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
13 # define setjmp(x) sigsetjmp((x), 1)
15 # define longjmp(x, n) siglongjmp((x), (n))
17 # define procenv_t jmp_buf
20 #endif /* _POSIXJMP_H_ */