summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2003-06-16 04:50:09 +0000
committerManuel Novoa III <mjn3@codepoet.org>2003-06-16 04:50:09 +0000
commitb34bab24093904492a924303d4e24faffee2cd87 (patch)
treec6b72498c5425885faab8a98cedaf0cb8cc4ad2a /include
parent889b08e7656a5975f033bdf87ff4bf6366d03606 (diff)
Add memmem().
Diffstat (limited to 'include')
-rw-r--r--include/string.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/string.h b/include/string.h
index 872cccab2..8aa40f262 100644
--- a/include/string.h
+++ b/include/string.h
@@ -199,14 +199,12 @@ extern char *strtok_r (char *__restrict __s, __const char *__restrict __delim,
#endif
#ifdef __USE_GNU
-#if 0
/* Find the first occurrence of NEEDLE in HAYSTACK.
NEEDLE is NEEDLELEN bytes long;
HAYSTACK is HAYSTACKLEN bytes long. */
extern void *memmem (__const void *__haystack, size_t __haystacklen,
__const void *__needle, size_t __needlelen)
__THROW __attribute_pure__;
-#endif
/* Copy N bytes of SRC to DEST, return pointer to bytes after the
last written byte. */