summaryrefslogtreecommitdiff
path: root/include/setjmp.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-08-21 08:08:03 +0000
committerUlrich Drepper <drepper@redhat.com>2002-08-21 08:08:03 +0000
commit92d702633f6d321b7c1dc733fde09a681eba6a0a (patch)
tree6138f70107cc1b77f53ff161d92017061b67e215 /include/setjmp.h
parentf04668099b55068a5e0d96dcc78f2f294a88dd56 (diff)
(__libc_longjmp): Add declaration.
Diffstat (limited to 'include/setjmp.h')
-rw-r--r--include/setjmp.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/setjmp.h b/include/setjmp.h
index acab1b9acb..412ab79da2 100644
--- a/include/setjmp.h
+++ b/include/setjmp.h
@@ -15,7 +15,9 @@ extern int __sigjmp_save (jmp_buf __env, int __savemask);
extern void _longjmp_unwind (jmp_buf env, int val);
-extern void __libc_siglongjmp (sigjmp_buf __env, int __val)
+extern void __libc_siglongjmp (sigjmp_buf env, int val)
__attribute__ ((noreturn));
+extern void __libc_longjmp (sigjmp_buf env, int val)
+ __attribute__ ((noreturn));
#endif