소스 검색

Include real prototype for bcmp

Eric Andersen 23 년 전
부모
커밋
09579249ef
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 *));