mempcpy(): correct naming of the mempcpy() function
authorH. Peter Anvin <hpa@zytor.com>
Mon, 11 Feb 2008 06:48:25 +0000 (22:48 -0800)
committerH. Peter Anvin <hpa@zytor.com>
Mon, 11 Feb 2008 06:48:57 +0000 (22:48 -0800)
All the internal symbols in mempcpy.S were "memcpy", which is
obviously wrong.

com32/lib/mempcpy.S

index 3788ab5..aa17f47 100644 (file)
@@ -3,9 +3,9 @@
 #
 
        .text
-       .globl  memcpy
-       .type   memcpy, @function
-memcpy:
+       .globl  mempcpy
+       .type   mempcpy, @function
+mempcpy:
        pushl   %esi
        pushl   %edi
 #ifdef REGPARM
@@ -34,4 +34,4 @@ memcpy:
        popl    %esi
        ret
 
-       .size   memcpy, .-memcpy
+       .size   mempcpy, .-mempcpy