From ac9dcbf17b9bc77955768c6e25952cd670a53719 Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Sun, 4 May 2014 16:01:36 +0200 Subject: [PATCH] : Make _setjmp() and _longjmp() visible for SUSv2 too. They were around even earlier (CAE XPG4v2, actually) but to support that we would need _XOPEN_SOURCE_EXTENSIONS support which we currently lack. --- include/setjmp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/setjmp.h b/include/setjmp.h index 24c526ae68..8736ef1574 100644 --- a/include/setjmp.h +++ b/include/setjmp.h @@ -55,7 +55,7 @@ int sigsetjmp (sigjmp_buf, int); void siglongjmp (sigjmp_buf, int) __dead2; #endif -#if __BSD_VISIBLE || __XSI_VISIBLE >= 600 +#if __BSD_VISIBLE || __XSI_VISIBLE >= 500 int _setjmp (jmp_buf); void _longjmp (jmp_buf, int) __dead2; #endif -- 2.41.0