Changeset 55f068c in mainline for uspace/lib/c/include/setjmp.h
- Timestamp:
- 2018-03-11T17:15:15Z (7 years ago)
- Children:
- 12ae6d8
- Parents:
- 615e83d
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-11 17:07:39)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-11 17:15:15)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/setjmp.h
r615e83d r55f068c 38 38 typedef context_t jmp_buf[1]; 39 39 40 extern int setjmp(jmp_buf) __attribute__((returns_twice)); 41 extern void longjmp(jmp_buf, int) __attribute__((noreturn)); 42 extern void __longjmp(jmp_buf, int) __attribute__((noreturn)); 40 extern int __setjmp(jmp_buf) __attribute__((returns_twice)); 41 extern _Noreturn void __longjmp(jmp_buf, int); 42 43 #define setjmp __setjmp 44 extern _Noreturn void longjmp(jmp_buf, int); 43 45 44 46 #endif
Note:
See TracChangeset
for help on using the changeset viewer.