Skip to content

Commit

Permalink
(__libc_longjmp): Add declaration.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Aug 21, 2002
1 parent f046680 commit 92d7026
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion include/setjmp.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 92d7026

Please sign in to comment.