summaryrefslogtreecommitdiff
path: root/include/string.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-10-23 15:26:33 +0000
committerEric Andersen <andersen@codepoet.org>2000-10-23 15:26:33 +0000
commit09579249ef15934abd830813c8ecdc1248faebd5 (patch)
tree31ccffcc13d0776f72734bf33d1a377524f18f3f /include/string.h
parent3a1706486f3c47fd6634b5f2c1bf088d7cf6c2eb (diff)
Include real prototype for bcmp
Diffstat (limited to 'include/string.h')
-rw-r--r--include/string.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/string.h b/include/string.h
index e276db7ee..dcdd24fb0 100644
--- a/include/string.h
+++ b/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 *));