diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-23 15:26:33 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-23 15:26:33 +0000 |
commit | 09579249ef15934abd830813c8ecdc1248faebd5 (patch) | |
tree | 31ccffcc13d0776f72734bf33d1a377524f18f3f | |
parent | 3a1706486f3c47fd6634b5f2c1bf088d7cf6c2eb (diff) |
Include real prototype for bcmp
-rw-r--r-- | include/string.h | 2 |
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 *)); |