aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/string/memrchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/memrchr.c')
-rw-r--r--newlib/libc/string/memrchr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/string/memrchr.c b/newlib/libc/string/memrchr.c
index 974cebc..6a2c03e 100644
--- a/newlib/libc/string/memrchr.c
+++ b/newlib/libc/string/memrchr.c
@@ -63,8 +63,8 @@ QUICKREF
_PTR
_DEFUN (memrchr, (src_void, c, length),
- _CONST _PTR src_void _AND
- int c _AND
+ _CONST _PTR src_void,
+ int c,
size_t length)
{
_CONST unsigned char *src = (_CONST unsigned char *) src_void + length - 1;