summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/arm/setjmp.S
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-15 13:25:30 +0000
committerEric Andersen <andersen@codepoet.org>2001-01-15 13:25:30 +0000
commit12e006e50e0f08ba12eaaacfb91553401d114ad1 (patch)
tree53fb5198efd0173476b1d03a6669215b21c37ae8 /libc/sysdeps/linux/arm/setjmp.S
parenteafdf1b819e2211d2dda91661b462640043d879e (diff)
Fix naming error. s/sigsetjmp/__sigsetjmp/g
Diffstat (limited to 'libc/sysdeps/linux/arm/setjmp.S')
-rw-r--r--libc/sysdeps/linux/arm/setjmp.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/arm/setjmp.S b/libc/sysdeps/linux/arm/setjmp.S
index 979c182db..57516f2f0 100644
--- a/libc/sysdeps/linux/arm/setjmp.S
+++ b/libc/sysdeps/linux/arm/setjmp.S
@@ -28,12 +28,12 @@ setjmp:
mov r1, #0
-.globl sigsetjmp;
+.globl __sigsetjmp;
.align 4; \
-sigsetjmp:
+__sigsetjmp:
/* Save registers */
stmia r0, {v1-v6, sl, fp, sp, lr}
/* Make a tail call to __sigjmp_save; it takes the same args. */
B __sigjmp_save
-.size setjmp,.-setjmp;
+.size __sigsetjmp,.-__sigsetjmp;