diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-12-01 07:58:06 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-01 07:58:06 +0000 |
commit | 39534e9e57a3c64f8fdadd0081a4992f0d52e4ab (patch) | |
tree | 821114d46f0a6151fdc213aff77d44a76ec6a393 /libc/sysdeps/linux/sparc/bits/setjmp.h | |
parent | 9c4d060ea41fb54d498b546fb5c3242b57770d52 (diff) |
sync with glibc
Diffstat (limited to 'libc/sysdeps/linux/sparc/bits/setjmp.h')
-rw-r--r-- | libc/sysdeps/linux/sparc/bits/setjmp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/sparc/bits/setjmp.h b/libc/sysdeps/linux/sparc/bits/setjmp.h index 574085664..dac9ac5cb 100644 --- a/libc/sysdeps/linux/sparc/bits/setjmp.h +++ b/libc/sysdeps/linux/sparc/bits/setjmp.h @@ -17,7 +17,7 @@ 02111-1307 USA. */ #ifndef _BITS_SETJMP_H -#define _BITS_SETJMP_H 1 +#define _BITS_SETJMP_H 1 #if !defined _SETJMP_H && !defined _PTHREAD_H # error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead." @@ -77,8 +77,8 @@ typedef int __jmp_buf[3]; /* Test if longjmp to JMPBUF would unwind the frame containing a local variable at ADDRESS. */ #define _JMPBUF_UNWINDS(jmpbuf, address) \ - ((void *) (address) < (void *) (jmpbuf)[JB_SP]) + ((int) (address) < (jmpbuf)[JB_SP]) #endif -#endif /* bits/setjmp.h */ +#endif /* bits/setjmp.h */ |