X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=libiberty%2Fstrcasecmp.c;h=131d81c2ce7881fa48c363dc5bf5fb302c61ce0b;hb=f105335dc974c083a15d588f7ae903f47f7a02c2;hp=4bfe65077121e45612e38bd42b8e90ffcb93315c;hpb=542e92711b3f5310eb8a4455c83435e3cbf6c0ae;p=pf3gnuchains%2Fgcc-fork.git diff --git a/libiberty/strcasecmp.c b/libiberty/strcasecmp.c index 4bfe6507712..131d81c2ce7 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;