summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ctype.h4
-rw-r--r--include/string.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/ctype.h b/include/ctype.h
index 81f09bebe..8f1bb9d99 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -3,8 +3,8 @@
* ctype.h
* Character classification and conversion
*
- * Copyright (C) 2000 by Lineo, inc.
- * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 2000 by Lineo, inc.
+ * Copyright (C) 2000,2001 Erik Andersen <andersee@debian.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
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. */