diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-12-19 15:53:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-12-19 15:53:08 +0000 |
commit | 5a65349824bb70bb75d8e05a9f879b55af32309f (patch) | |
tree | f195a7bb93861f8afea6755fb5c0ad2cc8e09fdf /include/string.h | |
parent | 6a56a9139b3cfd5242652a0135b2341ace43130e (diff) |
Update my email address. I am no longer andersen@lineo.com
Diffstat (limited to 'include/string.h')
-rw-r--r-- | include/string.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/string.h b/include/string.h index 13bdca993..761a59587 100644 --- a/include/string.h +++ b/include/string.h @@ -62,16 +62,16 @@ extern int memcmp (__const void *__s1, __const void *__s2, size_t __n) extern void *memchr (__const void *__s, int __c, size_t __n) __THROW __attribute_pure__; -#if 0 //#ifdef __USE_GNU +#if 0 /* Search in S for C. This is similar to `memchr' but there is no length limit. */ extern void *rawmemchr (__const void *__s, int __c) __THROW __attribute_pure__; +#endif /* Search N bytes of S for the final occurrence of C. */ extern void *memrchr (__const void *__s, int __c, size_t __n) __THROW __attribute_pure__; -#endif /* Copy SRC to DEST. */ |