diff options
Diffstat (limited to 'newlib/libc/string/memmove.c')
-rw-r--r-- | newlib/libc/string/memmove.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/string/memmove.c b/newlib/libc/string/memmove.c index e50ab58..70adb83 100644 --- a/newlib/libc/string/memmove.c +++ b/newlib/libc/string/memmove.c @@ -48,11 +48,11 @@ QUICKREF #define TOO_SMALL(LEN) ((LEN) < BIGBLOCKSIZE) /*SUPPRESS 20*/ -_PTR +void * __inhibit_loop_to_libcall _DEFUN (memmove, (dst_void, src_void, length), - _PTR dst_void, - const _PTR src_void, + void *dst_void, + const void *src_void, size_t length) { #if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__) |