From 1f80b7444c4ecf5cf391766471c246ebd57399a7 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Sat, 21 Jan 2006 16:13:48 +0000 Subject: Remove other __sigprocmask occurences, even if unused, remove unsed file --- libc/sysdeps/linux/e1/setjmp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libc/sysdeps/linux/e1') diff --git a/libc/sysdeps/linux/e1/setjmp.c b/libc/sysdeps/linux/e1/setjmp.c index 502e89b22..750c4e08e 100644 --- a/libc/sysdeps/linux/e1/setjmp.c +++ b/libc/sysdeps/linux/e1/setjmp.c @@ -7,6 +7,8 @@ #include #include +libc_hidden_proto(sigprocmask) + int setjmp( jmp_buf state) { asm volatile( "mov %0, G3\n\t" @@ -32,7 +34,7 @@ int sigsetjmp( sigjmp_buf state , int savesigs) if(savesigs) { state->__mask_was_saved = 1; /* how arg in is not significant */ - __sigprocmask(SIG_SETMASK, NULL, &state->__saved_mask); + sigprocmask(SIG_SETMASK, NULL, &state->__saved_mask); } else state->__mask_was_saved = 0; -- cgit v1.2.3