summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorJohn Birrell <jb@FreeBSD.org>1998-06-09 22:57:34 +0000
committerJohn Birrell <jb@FreeBSD.org>1998-06-09 22:57:34 +0000
commit0b0ae157f896e6937efe0e0b3953b1f20fbc3ef3 (patch)
tree1b746fdda89d16c803d8b54165aad7b219dfcd55 /lib/libc
parentf4086bc0cb89575fdcb1d118e65e8a0b8594b648 (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/alpha/gen/setjmp.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/alpha/gen/setjmp.S b/lib/libc/alpha/gen/setjmp.S
index 0e908380d031..a5ed0ff11f10 100644
--- a/lib/libc/alpha/gen/setjmp.S
+++ b/lib/libc/alpha/gen/setjmp.S
@@ -27,7 +27,7 @@
* rights to redistribute these changes.
*/
-#include <machine/asm.h>
+#include "SYS.h"
/*
* C library -- setjmp, longjmp
@@ -62,7 +62,7 @@ LEAF(setjmp, 1)
/* see what's blocked */
mov zero, a0
- CALL(sigblock) /* see what's blocked */
+ PCALL(sigblock) /* see what's blocked */
stq v0, (1 * 8)(s0) /* and remember it in sc_mask */
lda sp, -24(sp) /* sizeof struct sigaltstack */
@@ -115,7 +115,7 @@ END(setjmp)
LEAF(longjmp, 2)
LDGP(pv)
stq a1, (( 0 + 4) * 8)(a0) /* save return value */
- CALL(sigreturn) /* use sigreturn to return */
+ PCALL(sigreturn) /* use sigreturn to return */
botch:
CALL(longjmperror)