diff options
Diffstat (limited to 'contrib/binutils/libiberty/argv.c')
-rw-r--r-- | contrib/binutils/libiberty/argv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/binutils/libiberty/argv.c b/contrib/binutils/libiberty/argv.c index 4205579..31d8ef5 100644 --- a/contrib/binutils/libiberty/argv.c +++ b/contrib/binutils/libiberty/argv.c @@ -29,13 +29,13 @@ Boston, MA 02111-1307, USA. */ /* Routines imported from standard C runtime libraries. */ -#ifdef __STDC__ +#ifdef ANSI_PROTOTYPES #include <stddef.h> #include <string.h> #include <stdlib.h> -#else /* !__STDC__ */ +#else /* !ANSI_PROTOTYPES */ #if !defined _WIN32 || defined __GNUC__ extern char *memcpy (); /* Copy memory region */ @@ -46,7 +46,7 @@ extern void free (); /* Free malloc'd memory */ extern char *strdup (); /* Duplicate a string */ #endif -#endif /* __STDC__ */ +#endif /* ANSI_PROTOTYPES */ #ifndef NULL |