1#ifndef _OSFMK_ARM_SETJMP_H_
2#define _OSFMK_ARM_SETJMP_H_
3
4typedef struct jmp_buf {
5    int jmp_buf[64];
6} jmp_buf_t;
7
8#endif
9