X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=libiberty%2Fstrcasecmp.c;fp=libiberty%2Fstrcasecmp.c;h=131d81c2ce7881fa48c363dc5bf5fb302c61ce0b;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=4bfe65077121e45612e38bd42b8e90ffcb93315c;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/libiberty/strcasecmp.c b/libiberty/strcasecmp.c index 4bfe6507..131d81c2 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;