mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-05-02 14:40:21 +08:00
21 lines
332 B
C
21 lines
332 B
C
/* copyright(C) 2003 H.Kawai (under KL-01). */
|
|
|
|
#if (!defined(SETJMP_H))
|
|
|
|
#define SETJMP_H 1
|
|
|
|
#if (defined(__cplusplus))
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef int jmp_buf[3]; /* EBP, EIP, ESP */
|
|
|
|
#define setjmp(env) __builtin_setjmp(env)
|
|
#define longjmp(env, val) __builtin_longjmp(env, val)
|
|
|
|
#if (defined(__cplusplus))
|
|
}
|
|
#endif
|
|
|
|
#endif
|