aboutsummaryrefslogtreecommitdiff
path: root/lib/libc_r/uthread/pthread_private.h
diff options
context:
space:
mode:
authorJason Evans <jasone@FreeBSD.org>2000-01-20 21:53:59 +0000
committerJason Evans <jasone@FreeBSD.org>2000-01-20 21:53:59 +0000
commitbeab1ec9b51c96ff64dd6d4caf3db4315ef9df45 (patch)
treea996b006288a39c93613a5bd7a8ec8280e81b72a /lib/libc_r/uthread/pthread_private.h
parent5fa5aeec53c74ab99696428a16c79578ba6e827a (diff)
downloadsrc-beab1ec9b51c96ff64dd6d4caf3db4315ef9df45.tar.gz
src-beab1ec9b51c96ff64dd6d4caf3db4315ef9df45.zip
Minor *jmp() cleanups.
Notes
Notes: svn path=/head/; revision=56344
Diffstat (limited to 'lib/libc_r/uthread/pthread_private.h')
-rw-r--r--lib/libc_r/uthread/pthread_private.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc_r/uthread/pthread_private.h b/lib/libc_r/uthread/pthread_private.h
index 00ca3b091ec1..962eb86957af 100644
--- a/lib/libc_r/uthread/pthread_private.h
+++ b/lib/libc_r/uthread/pthread_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