diff options
author | David McCullough <davidm@snapgear.com> | 2002-08-09 13:03:00 +0000 |
---|---|---|
committer | David McCullough <davidm@snapgear.com> | 2002-08-09 13:03:00 +0000 |
commit | bea67a752df6f8e1dfce75592fb7c371e5c8a212 (patch) | |
tree | c9b547baafaae100ab2c34ef6930ba48a1a5a736 /libc/sysdeps/linux/sh/longjmp.c | |
parent | 54e4a312a7ac8609604d922950d29f618d1cb04c (diff) |
Fix a number of compile time warnings so that uClibc will build with -Werror using
a 3.0.4 version of the sh-linux-gcc compiler.
Diffstat (limited to 'libc/sysdeps/linux/sh/longjmp.c')
-rw-r--r-- | libc/sysdeps/linux/sh/longjmp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/sh/longjmp.c b/libc/sysdeps/linux/sh/longjmp.c index a17147d5f..dd4f684ad 100644 --- a/libc/sysdeps/linux/sh/longjmp.c +++ b/libc/sysdeps/linux/sh/longjmp.c @@ -24,6 +24,8 @@ #include <setjmp.h> #include <signal.h> +extern int __longjmp(char *env, int val); +extern int __sigprocmask(int how, const sigset_t *set, sigset_t *oldset); /* Set the signal mask to the one specified in ENV, and jump to the position specified in ENV, causing the setjmp @@ -36,7 +38,7 @@ void __libc_siglongjmp (sigjmp_buf env, int val) (sigset_t *) NULL); /* Call the machine-dependent function to restore machine state. */ - __longjmp (env[0].__jmpbuf, val ?: 1); + __longjmp ((char *) env[0].__jmpbuf, val ?: 1); } __asm__(".weak longjmp; longjmp = __libc_siglongjmp"); |