summaryrefslogtreecommitdiff
path: root/libc/string/arm
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-03-18 11:38:02 +0000
committerEric Andersen <andersen@codepoet.org>2004-03-18 11:38:02 +0000
commit42a08c74b9d199c0fa555947b64571e243b34cc5 (patch)
tree51d653b99aa2f38baecbd5b683d71fc7128dc751 /libc/string/arm
parentada7878ba0d097b798277aaa095e9d935a64fa99 (diff)
Supply '__bzero' with 'bzero' as just a weak alias (since it is not SuSv3)
Diffstat (limited to 'libc/string/arm')
-rw-r--r--libc/string/arm/bzero.S8
1 files changed, 5 insertions, 3 deletions
diff --git a/libc/string/arm/bzero.S b/libc/string/arm/bzero.S
index 52245a244..253b3c88b 100644
--- a/libc/string/arm/bzero.S
+++ b/libc/string/arm/bzero.S
@@ -38,11 +38,13 @@
*/
.text
- .global bzero;
- .type bzero,%function
+ .global __bzero;
+ .type __bzero,%function
.align 4; \
-bzero:
+__bzero:
mov r2, r1
mov r1, #0
b memset (PLT)
+
+.weak bzero ; bzero = __bzero