Changes in uspace/lib/c/include/setjmp.h [6b96dc06:a35a3d8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/setjmp.h
r6b96dc06 ra35a3d8 35 35 36 36 #include <libarch/fibril_context.h> 37 #include <_bits/__noreturn.h>38 37 39 38 typedef context_t jmp_buf[1]; 40 39 41 40 extern int __setjmp(jmp_buf) __attribute__((returns_twice)); 42 extern _ _noreturn void __longjmp(jmp_buf, int);41 extern _Noreturn void __longjmp(jmp_buf, int); 43 42 44 43 #define setjmp __setjmp 45 extern _ _noreturn void longjmp(jmp_buf, int);44 extern _Noreturn void longjmp(jmp_buf, int); 46 45 47 46 #endif
Note:
See TracChangeset
for help on using the changeset viewer.