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