X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=libiberty%2Fmemcmp.c;fp=libiberty%2Fmemcmp.c;h=39edfca98a6dad4e5fe3a0ea83598442510c6e9b;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=d8d3997d0661c9ff52f37e53f12c907505f30072;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/libiberty/memcmp.c b/libiberty/memcmp.c index d8d3997d..39edfca9 100644 --- a/libiberty/memcmp.c +++ b/libiberty/memcmp.c @@ -16,15 +16,10 @@ as if comparing unsigned char arrays. */ #include -#ifdef __STDC__ #include -#else -#define size_t unsigned long -#endif int -DEFUN(memcmp, (str1, str2, count), - const PTR str1 AND const PTR str2 AND size_t count) +memcmp (const PTR str1, const PTR str2, size_t count) { register const unsigned char *s1 = (const unsigned char*)str1; register const unsigned char *s2 = (const unsigned char*)str2;