10 lines
126 B
C
Executable File
10 lines
126 B
C
Executable File
#ifndef __SETJMP_H
|
|
#define __SETJMP_H 1
|
|
|
|
typedef int jmp_buf[13];
|
|
|
|
int setjmp (jmp_buf);
|
|
void longjmp (jmp_buf, int);
|
|
|
|
#endif
|