(__libc_longjmp): Add declaration.

This commit is contained in:
Ulrich Drepper 2002-08-21 08:08:03 +00:00
parent f04668099b
commit 92d702633f
1 changed files with 3 additions and 1 deletions

View File

@ -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