source:
CIVL/mods/dev.civl.com/include/headers/setjmp.h@
bc0fbae
| Last change on this file since bc0fbae was b4b3b0d, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 251 bytes | |
| Line | |
|---|---|
| 1 | /* setjmp.h: declares one function and one type, for |
| 2 | * bypassing the normal function call and return discipline |
| 3 | */ |
| 4 | #ifndef _SETJMP_ |
| 5 | #define _SETJMP_ |
| 6 | |
| 7 | typedef int jmp_buf[]; |
| 8 | |
| 9 | /* Functions */ |
| 10 | |
| 11 | int setjmp(jmp_buf); |
| 12 | void longjmp(jmp_buf, int); |
| 13 | |
| 14 | #endif |
Note:
See TracBrowser
for help on using the repository browser.
