1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #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
- typedef long int __jmp_buf[64 + (12 * 4)] __attribute__ ((__aligned__ (16)));
- #endif
|