]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libiberty/strcasecmp.c
c++: remove lookup_template_class's entering_scope flag
[thirdparty/gcc.git] / libiberty / strcasecmp.c
index d2608dc0b8786a3ecb8ab66e19197f3e0d24c35d..131d81c2ce7881fa48c363dc5bf5fb302c61ce0b 100644 (file)
@@ -25,11 +25,7 @@ static char sccsid[] = "@(#)strcasecmp.c     5.5 (Berkeley) 11/24/87";
 #endif /* LIBC_SCCS and not lint */
 
 #include <ansidecl.h>
-#ifdef ANSI_PROTOTYPES
 #include <stddef.h>
-#else
-#define size_t unsigned long
-#endif
 
 /*
  * This array is designed for mapping upper and lower case letter
@@ -73,8 +69,7 @@ static const unsigned char charmap[] = {
 };
 
 int
-strcasecmp(s1, s2)
-    const char *s1, *s2;
+strcasecmp(const char *s1, const char *s2)
 {
     register unsigned char u1, u2;