diff options
Diffstat (limited to 'newlib/libc/string/memmem.c')
-rw-r--r-- | newlib/libc/string/memmem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/string/memmem.c b/newlib/libc/string/memmem.c index 59e19d2..5588b9f 100644 --- a/newlib/libc/string/memmem.c +++ b/newlib/libc/string/memmem.c @@ -47,9 +47,9 @@ QUICKREF void * _DEFUN (memmem, (haystack_start, haystack_len, needle_start, needle_len), - const void *haystack_start _AND - size_t haystack_len _AND - const void *needle_start _AND + const void *haystack_start, + size_t haystack_len, + const void *needle_start, size_t needle_len) { /* Abstract memory is considered to be an array of 'unsigned char' values, |