X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=libiberty%2Fstrcasecmp.c;h=131d81c2ce7881fa48c363dc5bf5fb302c61ce0b;hb=0fc2a808cbf5302016535367191bb8cd0900f332;hp=4bfe65077121e45612e38bd42b8e90ffcb93315c;hpb=2ee563b53258d390d7446e90a67f465d504ae44c;p=deliverable%2Fbinutils-gdb.git diff --git a/libiberty/strcasecmp.c b/libiberty/strcasecmp.c index 4bfe650771..131d81c2ce 100644 --- a/libiberty/strcasecmp.c +++ b/libiberty/strcasecmp.c @@ -25,11 +25,7 @@ static char sccsid[] = "@(#)strcasecmp.c 5.5 (Berkeley) 11/24/87"; #endif /* LIBC_SCCS and not lint */ #include -#ifdef __STDC__ #include -#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;