[git commit future 1/1] setjmp.h: move __sigjmp_save prototype for consistency

Peter S. Mazinger ps.m at gmx.net
Wed Mar 16 19:20:32 UTC 2011


commit: http://git.uclibc.org/uClibc/commit/?id=561f9d2d01fb20e5b44e7aaa486611bb31af7fe0
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/future

Signed-off-by: Peter S. Mazinger <ps.m at gmx.net>
---
 include/setjmp.h                     |    1 +
 libc/signal/sigjmp.c                 |    1 -
 libc/sysdeps/linux/mips/setjmp_aux.c |    2 --
 3 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/include/setjmp.h b/include/setjmp.h
index c70f771..0da5968 100644
--- a/include/setjmp.h
+++ b/include/setjmp.h
@@ -119,6 +119,7 @@ libc_hidden_proto(__longjmp)
 extern __typeof(longjmp) __libc_longjmp attribute_noreturn;
 extern __typeof(siglongjmp) __libc_siglongjmp attribute_noreturn;
 extern void _longjmp_unwind(jmp_buf __env, int __val);
+extern int __sigjmp_save(sigjmp_buf __env, int __savemask) attribute_hidden;
 /* We use the normal longjmp for unwinding */
 # define __libc_unwind_longjmp(buf, val) __libc_longjmp(buf, val)
 #endif
diff --git a/libc/signal/sigjmp.c b/libc/signal/sigjmp.c
index e1b1e24..a96d662 100644
--- a/libc/signal/sigjmp.c
+++ b/libc/signal/sigjmp.c
@@ -25,7 +25,6 @@
    before doing a `__setjmp' on ENV[0].__jmpbuf.
    Always return zero.  */
 
-int __sigjmp_save (sigjmp_buf env, int savemask) attribute_hidden;
 int __sigjmp_save (sigjmp_buf env, int savemask)
 {
     env[0].__mask_was_saved = (savemask &&
diff --git a/libc/sysdeps/linux/mips/setjmp_aux.c b/libc/sysdeps/linux/mips/setjmp_aux.c
index 751b32d..3f2ae9a 100644
--- a/libc/sysdeps/linux/mips/setjmp_aux.c
+++ b/libc/sysdeps/linux/mips/setjmp_aux.c
@@ -27,8 +27,6 @@
    pointer.  We do things this way because it's difficult to reliably
    access them in C.  */
 
-extern int __sigjmp_save (sigjmp_buf, int);
-
 int
 #if _MIPS_SIM == _MIPS_SIM_ABI64
 __sigsetjmp_aux (jmp_buf env, int savemask, long sp, long fp)
-- 
1.7.3.4



More information about the uClibc-cvs mailing list