From 41f6e3e11c1b02c9c809a73f827e247be2717bb3 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Sat, 14 Mar 2009 19:01:26 +0000 Subject: [PATCH] Namespace: _setjmp() and _longjmp() are XSI extensions. --- include/setjmp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/setjmp.h b/include/setjmp.h index 95644113e710..9e25f603be48 100644 --- a/include/setjmp.h +++ b/include/setjmp.h @@ -48,7 +48,7 @@ #include __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