Changeset 6b96dc06 in mainline for uspace/lib/c/include/setjmp.h
- Timestamp:
- 2018-06-27T16:32:16Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 45c39ad
- Parents:
- 1c9ae08
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/setjmp.h
r1c9ae08 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.