Update.
authorAndreas Jaeger <aj@suse.de>
Tue, 18 Jul 2000 14:00:31 +0000 (14:00 +0000)
committerAndreas Jaeger <aj@suse.de>
Tue, 18 Jul 2000 14:00:31 +0000 (14:00 +0000)
* include/string.h: Add prototype for __memchr.

ChangeLog
include/string.h

index 3331b7b..a5ec8fd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2000-07-18  Andreas Jaeger  <aj@suse.de>
 
+       * include/string.h: Add prototype for __memchr.
+
        * sysdeps/alpha/memchr.S: Fix copy & error in weak_alias.
 
        * sysdeps/generic/memchr.c: Fix copy & paste error: Use memchr
index 509fce2..9ccea02 100644 (file)
@@ -31,6 +31,9 @@ extern char *__strchrnul (__const char *__s, int __c)
 extern void *__memrchr (__const void *__s, int __c, size_t __n)
      __attribute_pure__;
 
+extern void *__memchr (__const void *__s, int __c, size_t __n)
+     __attribute_pure__;
+     
 /* Now the real definitions.  We do this here since some of the functions
    above are defined as macros in the headers.  */
 #include <string/string.h>