source:
CIVL/mods/dev.civl.abc/src/include/abc/setjmp.h@
cb4d4f4
| Last change on this file since cb4d4f4 was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 251 bytes | |
| Rev | Line | |
|---|---|---|
| [aad342c] | 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.
