diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-12 00:09:41 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-12 00:09:41 +0000 |
commit | dd1be05eec6310a34647575c0d20bb5a052563c2 (patch) | |
tree | d446bca7855325365477cb4f166a4758c17c5d03 /libc/string/sh64/strcpy.S | |
parent | ccb1922d8b3918b32a3cc11e61786c6c368967a8 (diff) |
Add hidden versions
Diffstat (limited to 'libc/string/sh64/strcpy.S')
-rw-r--r-- | libc/string/sh64/strcpy.S | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libc/string/sh64/strcpy.S b/libc/string/sh64/strcpy.S index 273e9147c..faa071c50 100644 --- a/libc/string/sh64/strcpy.S +++ b/libc/string/sh64/strcpy.S @@ -16,10 +16,13 @@ .section .text..SHmedia32,"ax" .globl strcpy - .type strcpy, @function + .set strcpy,__strcpy + .globl __strcpy + .hidden __strcpy + .type __strcpy, @function .align 5 -strcpy: +__strcpy: pta/l shortstring,tr1 ldlo.q r3,0,r4 @@ -94,5 +97,4 @@ loop: addi r0, 8, r0 blink tr1, r63 // shortstring - .size strcpy, . - strcpy - + .size __strcpy,.-__strcpy |