Namespace: _setjmp() and _longjmp() are XSI extensions.

This commit is contained in:
David Schultz 2009-03-14 19:01:26 +00:00
parent c0f43bd241
commit 41f6e3e11c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=189807

View File

@ -48,7 +48,7 @@
#include <machine/setjmp.h>
__BEGIN_DECLS
#if __BSD_VISIBLE || __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE
#if __BSD_VISIBLE || __XSI_VISIBLE >= 600
void _longjmp(jmp_buf, int) __dead2;
int _setjmp(jmp_buf);
#endif