mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* include/string.h: Add prototype for __memchr.
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
2000-07-18 Andreas Jaeger <aj@suse.de>
|
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/alpha/memchr.S: Fix copy & error in weak_alias.
|
||||||
|
|
||||||
* sysdeps/generic/memchr.c: Fix copy & paste error: Use memchr
|
* sysdeps/generic/memchr.c: Fix copy & paste error: Use memchr
|
||||||
|
@ -31,6 +31,9 @@ extern char *__strchrnul (__const char *__s, int __c)
|
|||||||
extern void *__memrchr (__const void *__s, int __c, size_t __n)
|
extern void *__memrchr (__const void *__s, int __c, size_t __n)
|
||||||
__attribute_pure__;
|
__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
|
/* Now the real definitions. We do this here since some of the functions
|
||||||
above are defined as macros in the headers. */
|
above are defined as macros in the headers. */
|
||||||
#include <string/string.h>
|
#include <string/string.h>
|
||||||
|
Reference in New Issue
Block a user