diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-21 08:08:03 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-21 08:08:03 +0000 |
commit | 92d702633f6d321b7c1dc733fde09a681eba6a0a (patch) | |
tree | 6138f70107cc1b77f53ff161d92017061b67e215 /include | |
parent | f04668099b55068a5e0d96dcc78f2f294a88dd56 (diff) | |
download | glibc-92d702633f6d321b7c1dc733fde09a681eba6a0a.zip glibc-92d702633f6d321b7c1dc733fde09a681eba6a0a.tar.gz glibc-92d702633f6d321b7c1dc733fde09a681eba6a0a.tar.bz2 |
(__libc_longjmp): Add declaration.
Diffstat (limited to 'include')
-rw-r--r-- | include/setjmp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/setjmp.h b/include/setjmp.h index acab1b9..412ab79 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 |