123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #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
- #ifndef _ASM
- typedef struct
- {
-
- int __regs[13];
-
- int __fpcfg;
-
- int __fpregs[32];
- } __jmp_buf[1] __attribute__((__aligned__ (8)));
- #endif
- #endif
|