OSDN Git Service

Check for -pthread and -lpthread at configure time.
[pf3gnuchains/gcc-fork.git] / libiberty / strncmp.c
index 819cea6..916c2f0 100644 (file)
@@ -13,16 +13,10 @@ Compares the first @var{n} bytes of two strings, returning a value as
 */
 
 #include <ansidecl.h>
-#ifdef __STDC__
 #include <stddef.h>
-#else
-#define size_t unsigned long
-#endif
 
 int
-strncmp(s1, s2, n)
-     const char *s1, *s2;
-     register size_t n;
+strncmp(const char *s1, const char *s2, register size_t n)
 {
   register unsigned char u1, u2;