1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #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 <features.h>
- typedef struct
- {
-
- long int __dregs[7];
-
- int *__aregs[6];
- int *__fp;
- int *__sp;
- #if defined __HAVE_68881__ || defined __UCLIBC_HAS_FPU__
-
- char __fpregs[8 * (96 / 8)];
- #endif
- } __jmp_buf[1];
- #endif
|