Browse Source

Include real prototype for bcmp

Eric Andersen 23 years ago
parent
commit
09579249ef
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/string.h

+ 1 - 1
include/string.h

@@ -99,7 +99,7 @@ extern size_t strspn __P ((__const char *__s, __const char *__accept));
 extern char *strsignal __P ((int __sig));
 
 /* More BSD compatabilty */
-#define bcmp	memcmp
+int bcmp(const void *s1, const void *s2, size_t n);
 
 /* Linux silly hour */
 char *strfry __P ((char *));