diff options
author | Roger Sayle <roger@eyesopen.com> | 2003-04-15 03:35:47 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2003-04-15 03:35:47 +0000 |
commit | 0ae0f1b084a79054403a21ff278fa331b2ee02f9 (patch) | |
tree | dcc4ca6916745869895ab9bff8b4d6e3c5108d71 /libiberty/strcasecmp.c | |
parent | db0b376eb938de6ee819e751c0c13d4faf5a2dda (diff) | |
download | gcc-0ae0f1b084a79054403a21ff278fa331b2ee02f9.zip gcc-0ae0f1b084a79054403a21ff278fa331b2ee02f9.tar.gz gcc-0ae0f1b084a79054403a21ff278fa331b2ee02f9.tar.bz2 |
argv.c: Use ANSI_PROTOTYPES instead of __STDC__.
* argv.c: Use ANSI_PROTOTYPES instead of __STDC__.
* memchr.c: Likewise.
* strcasecmp.c: Likewise.
* strncasecmp.c: Likewise.
* strncmp.c: Likewise.
* xatexit.c: Likewise.
* xmalloc.c: Likewise.
* copysign.c: Use traditional function declaration instead of DEFUN.
* sigsetmask.c: Likewise.
* memcmp.c: Both of the above, ANSI_PROTOTYPES and DEFUN.
* memset.c: Likewise.
* memcpy.c: ANSI_PROTOTYPES, DEFUN and prototype bcopy.
* memmove.c: Likewise.
From-SVN: r65619
Diffstat (limited to 'libiberty/strcasecmp.c')
-rw-r--r-- | libiberty/strcasecmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/strcasecmp.c b/libiberty/strcasecmp.c index 4bfe650..d2608dc 100644 --- a/libiberty/strcasecmp.c +++ b/libiberty/strcasecmp.c @@ -25,7 +25,7 @@ static char sccsid[] = "@(#)strcasecmp.c 5.5 (Berkeley) 11/24/87"; #endif /* LIBC_SCCS and not lint */ #include <ansidecl.h> -#ifdef __STDC__ +#ifdef ANSI_PROTOTYPES #include <stddef.h> #else #define size_t unsigned long |