diff options
Diffstat (limited to 'string/memmove.c')
-rw-r--r-- | string/memmove.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/string/memmove.c b/string/memmove.c index 5748256519..ecb36a99db 100644 --- a/string/memmove.c +++ b/string/memmove.c @@ -41,10 +41,7 @@ rettype inhibit_loop_to_libcall -MEMMOVE (a1, a2, len) - a1const void *a1; - a2const void *a2; - size_t len; +MEMMOVE (a1const void *a1, a2const void *a2, size_t len) { unsigned long int dstp = (long int) dest; unsigned long int srcp = (long int) src; |