12345678910111213141516171819202122232425262728293031323334 |
- #ifndef _BITS_SETJMP_H
- #define _BITS_SETJMP_H 1
- #if !defined _SETJMP_H && !defined _PTHREAD_H
- # error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
- #endif
- #include <bits/wordsize.h>
- #if __WORDSIZE == 64
- typedef long int __jmp_buf[8];
- #else
- typedef int __jmp_buf[6];
- #endif
- #endif
|