From c6f85dde1ba37062a6ed32135e68e6a75a0c512e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Erkin=20Alp=20G=C3=BCney?= Date: Sun, 8 Mar 2015 18:49:20 +0200 Subject: [PATCH] Fixed prototype macro This is a macro, space is illegal here --- Library/include/stdio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/include/stdio.h b/Library/include/stdio.h index 4a11d69b..975f2199 100644 --- a/Library/include/stdio.h +++ b/Library/include/stdio.h @@ -77,7 +77,7 @@ extern FILE stderr[1]; #define getchar() getc(stdin) extern char *gets __P((char *)); -extern char *gets_s __P ((char *, size_t)); +extern char *gets_s __P((char *, size_t)); extern int _putchar __P((int)); extern int _getchar __P((void)); -- 2.34.1