svn commit: trunk/uClibc/libc/string/generic

sjhill at uclibc.org sjhill at uclibc.org
Fri Dec 2 04:11:22 UTC 2005


Author: sjhill
Date: 2005-12-01 20:11:20 -0800 (Thu, 01 Dec 2005)
New Revision: 12637

Log:
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.


Modified:
   trunk/uClibc/libc/string/generic/mempcpy.c


Changeset:
Modified: trunk/uClibc/libc/string/generic/mempcpy.c
===================================================================
--- trunk/uClibc/libc/string/generic/mempcpy.c	2005-12-02 03:31:20 UTC (rev 12636)
+++ trunk/uClibc/libc/string/generic/mempcpy.c	2005-12-02 04:11:20 UTC (rev 12637)
@@ -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);




More information about the uClibc-cvs mailing list