diff options
Diffstat (limited to 'newlib/libc/string/memchr.c')
-rw-r--r-- | newlib/libc/string/memchr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/string/memchr.c b/newlib/libc/string/memchr.c index 9660ed3..91f0b37 100644 --- a/newlib/libc/string/memchr.c +++ b/newlib/libc/string/memchr.c @@ -61,9 +61,9 @@ QUICKREF to fill (long)MASK. */ #define DETECTCHAR(X,MASK) (DETECTNULL(X ^ MASK)) -_PTR +void * _DEFUN (memchr, (src_void, c, length), - const _PTR src_void, + const void *src_void, int c, size_t length) { |