1 /* posixjmp.h -- wrapper for setjmp.h with changes for POSIX systems. */
8 /* This *must* be included *after* config.h */
10 #if defined (HAVE_POSIX_SIGSETJMP)
11 # define procenv_t sigjmp_buf
12 # if !defined (__OPENNT)
14 # define setjmp(x) sigsetjmp((x), 1)
16 # define longjmp(x, n) siglongjmp((x), (n))
17 # endif /* !__OPENNT */
19 # define procenv_t jmp_buf
22 #endif /* _POSIXJMP_H_ */