diff options
Diffstat (limited to 'lib/libpthread/thread/thr_private.h')
-rw-r--r-- | lib/libpthread/thread/thr_private.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libpthread/thread/thr_private.h b/lib/libpthread/thread/thr_private.h index 00ca3b0..962eb86 100644 --- a/lib/libpthread/thread/thr_private.h +++ b/lib/libpthread/thread/thr_private.h @@ -1245,8 +1245,9 @@ int _thread_sys_msync(void *, size_t, int); /* #include <setjmp.h> */ #ifdef _SETJMP_H_ -extern void __longjmp(jmp_buf, int); -extern void __siglongjmp(sigjmp_buf, int); +extern void __siglongjmp(sigjmp_buf, int) __dead2; +extern void __longjmp(jmp_buf, int) __dead2; +extern void ___longjmp(jmp_buf, int) __dead2; #endif __END_DECLS |