X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=libiberty%2Fstrcasecmp.c;h=131d81c2ce7881fa48c363dc5bf5fb302c61ce0b;hb=53d25da64b00c1cf7f10d04785d66fa003f8bfc9;hp=4bfe65077121e45612e38bd42b8e90ffcb93315c;hpb=e6450fe56177c2ce3faf4601ed4a3edf42cd90eb;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;