From: Ulrich Drepper Date: Wed, 21 Aug 2002 08:08:03 +0000 (+0000) Subject: (__libc_longjmp): Add declaration. X-Git-Tag: cvs/glibc-2-3~425 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=92d702633f6d321b7c1dc733fde09a681eba6a0a;p=thirdparty%2Fglibc.git (__libc_longjmp): Add declaration. --- diff --git a/include/setjmp.h b/include/setjmp.h index acab1b9acbe..412ab79da2c 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