summaryrefslogtreecommitdiff
path: root/libc/string
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2005-12-02 04:11:20 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2005-12-02 04:11:20 +0000
commit05d909bd4203b0df7659709e4c515c6860de43e1 (patch)
tree59455f896a9011d687e608b3dead84d9ea4555b6 /libc/string
parentd68d28e6969145dccc3eff52cfc4d5604f618736 (diff)
No, '__mempcpy' is used by user-space applications, like coreutils for example and glibc still has '__mempcpy' as a global symbol. How about this, do a complete buildroot file system after hacking uClibc to make sure things work? There's a novel idea.
Diffstat (limited to 'libc/string')
-rw-r--r--libc/string/generic/mempcpy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/generic/mempcpy.c b/libc/string/generic/mempcpy.c
index f2c860107..91d30116f 100644
--- a/libc/string/generic/mempcpy.c
+++ b/libc/string/generic/mempcpy.c
@@ -9,7 +9,7 @@
#undef mempcpy
-void attribute_hidden *__mempcpy (void *dstpp, const void *srcpp, size_t len)
+void *__mempcpy (void *dstpp, const void *srcpp, size_t len)
{
__memcpy(dstpp, srcpp, len);
return (void *)(((char *)dstpp) + len);