From 2b10887b8574fabfea415dad75ee5cf0d6173ee8 Mon Sep 17 00:00:00 2001 From: kris Date: Tue, 17 Apr 2001 18:16:46 +0000 Subject: [PATCH] I think this was supposed to be __const like in NetBSD: I have no idea why I changed it to const. Noticed by: David Wolfskill --- include/stdio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stdio.h b/include/stdio.h index 520c6227f5da..db84d40f177a 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -299,7 +299,7 @@ __END_DECLS __BEGIN_DECLS int asprintf __P((char **, const char *, ...)) __printflike(2, 3); char *ctermid_r __P((char *)); -const char *fmtcheck __P((const char *, const char *)) +__const char *fmtcheck __P((const char *, const char *)) __attribute__((__format_arg__(2))); char *fgetln __P((FILE *, size_t *)); int fpurge __P((FILE *));