diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/string.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/string.h b/include/string.h index 300a2e2faa..07389f3278 100644 --- a/include/string.h +++ b/include/string.h @@ -160,15 +160,6 @@ extern __typeof (mempcpy) mempcpy __asm__ ("__mempcpy"); extern __typeof (stpcpy) stpcpy __asm__ ("__stpcpy"); #endif -# ifndef _ISOMAC -# ifndef index -# define index(s, c) (strchr ((s), (c))) -# endif -# ifndef rindex -# define rindex(s, c) (strrchr ((s), (c))) -# endif -# endif - extern void *__memcpy_chk (void *__restrict __dest, const void *__restrict __src, size_t __len, size_t __destlen) __THROW; |