diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-09 19:41:02 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-09 19:41:02 +0000 |
commit | db777744aa07d47a571016b48fea82e53371fe2b (patch) | |
tree | f77a343835c1bec2d40612992a3e68501ffdf110 /include | |
parent | 2f2e72cbed35ff28d89ef16dbbea4497de834617 (diff) |
Implement mempcpy
Diffstat (limited to 'include')
-rw-r--r-- | include/string.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/string.h b/include/string.h index e0f7e3bcb..3b2f7cc81 100644 --- a/include/string.h +++ b/include/string.h @@ -200,14 +200,15 @@ extern char *strtok_r (char *__restrict __s, __const char *__restrict __delim, char **__restrict __save_ptr) __THROW; #endif +#ifdef __USE_GNU #if 0 -//#ifdef __USE_GNU /* 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. */ |