From ec91d8b59d5c8b314bc50cc6feedeeaf6fe3493c Mon Sep 17 00:00:00 2001 From: "\"Steven J. Hill\"" Date: Wed, 23 Aug 2006 03:38:46 +0000 Subject: Merge from trunk. --- libc/string/memmem.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libc/string/memmem.c') diff --git a/libc/string/memmem.c b/libc/string/memmem.c index f57733c4a..fd60f1e7b 100644 --- a/libc/string/memmem.c +++ b/libc/string/memmem.c @@ -7,6 +7,8 @@ #include "_string.h" +#ifdef __USE_GNU +libc_hidden_proto(memmem) void *memmem(const void *haystack, size_t haystacklen, const void *needle, size_t needlelen) { @@ -36,3 +38,5 @@ void *memmem(const void *haystack, size_t haystacklen, return NULL; } +libc_hidden_def(memmem) +#endif -- cgit v1.2.3