From: H. Peter Anvin Date: Mon, 11 Feb 2008 06:48:25 +0000 (-0800) Subject: mempcpy(): correct naming of the mempcpy() function X-Git-Tag: syslinux-3.62-pre1~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a62aaffeead17edc61e509ea643af408743619d5;p=profile%2Fivi%2Fsyslinux.git mempcpy(): correct naming of the mempcpy() function All the internal symbols in mempcpy.S were "memcpy", which is obviously wrong. --- diff --git a/com32/lib/mempcpy.S b/com32/lib/mempcpy.S index 3788ab5..aa17f47 100644 --- a/com32/lib/mempcpy.S +++ b/com32/lib/mempcpy.S @@ -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