diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-14 22:57:45 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-14 22:57:45 +0000 |
commit | f8703c6453b64fd74354a0851f6fb05795c31956 (patch) | |
tree | 252885111008043b1682496df58e46cbcd93d480 /libc/string/generic/memmove.c | |
parent | 032a3e76d290c776e26ae6c0a68e8b19885a68aa (diff) |
Move to use attribute_hidden
Diffstat (limited to 'libc/string/generic/memmove.c')
-rw-r--r-- | libc/string/generic/memmove.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libc/string/generic/memmove.c b/libc/string/generic/memmove.c index 21876ce6e..ddf7c8aa4 100644 --- a/libc/string/generic/memmove.c +++ b/libc/string/generic/memmove.c @@ -206,7 +206,9 @@ static void _wordcopy_bwd_dest_aligned (long int dstp, long int srcp, size_t len ((op_t *) dstp)[3] = MERGE (a0, sh_1, a1, sh_2); } -void *memmove (void *dest, const void *src, size_t len) +#undef memmove + +void attribute_hidden *__memmove (void *dest, const void *src, size_t len) { unsigned long int dstp = (long int) dest; unsigned long int srcp = (long int) src; @@ -276,3 +278,5 @@ void *memmove (void *dest, const void *src, size_t len) return (dest); } + +strong_alias(__memmove, memmove) |