diff options
Diffstat (limited to 'usr/src/head/setjmp.h')
-rw-r--r-- | usr/src/head/setjmp.h | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/usr/src/head/setjmp.h b/usr/src/head/setjmp.h index fe85be6b84..c95e4cac0d 100644 --- a/usr/src/head/setjmp.h +++ b/usr/src/head/setjmp.h @@ -22,8 +22,9 @@ /* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ - /* + * Copyright 2014 Garrett D'Amore <garrett@damore.org> + * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -46,8 +47,6 @@ using std::longjmp; extern "C" { #endif -#if defined(__STDC__) - #if !defined(_STRICT_STDC) || defined(__XOPEN_OR_POSIX) || \ defined(__EXTENSIONS__) /* non-ANSI standard compilation */ @@ -63,20 +62,6 @@ extern int sigsetjmp(sigjmp_buf, int) __RETURNS_TWICE; extern void siglongjmp(sigjmp_buf, int) __NORETURN; #endif -#else /* __STDC__ */ - -#if defined(_LP64) || defined(_I32LPx) -typedef long sigjmp_buf[_SIGJBLEN]; -#else -typedef int sigjmp_buf[_SIGJBLEN]; -#endif - -extern int sigsetjmp() __RETURNS_TWICE; -#pragma unknown_control_flow(sigsetjmp) -extern void siglongjmp(); - -#endif /* __STDC__ */ - #ifdef __cplusplus } #endif |