1234567891011121314151617181920212223242526272829303132333435363738 |
- #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 struct
- {
-
- void *__sp;
-
- void *__lp;
-
- void *__SDA;
- void *__SDA2;
-
- int __regs[14];
- } __jmp_buf[1];
- #endif
|