Changes in uspace/lib/cpp/include/csetjmp [c735afb:bc56f30] in mainline
- File:
-
- 1 edited
-
uspace/lib/cpp/include/csetjmp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/csetjmp
rc735afb rbc56f30 30 30 #define LIBCPP_CSETJMP 31 31 32 #include <__bits/common.hpp> 33 34 /** 35 * TODO: Currently the <setjmp.h> header uses 36 * _Noreturn, which is not available in C++. 37 */ 38 39 namespace std::hel 40 { 41 extern "C" { 42 //#include <setjmp.h> 43 } 44 } 32 #include <setjmp.h> 45 33 46 34 namespace std 47 35 { 48 /* using std::hel::jmp_buf; */49 /* using std::hel::longjmp; */36 using ::jmp_buf; 37 using ::longjmp; 50 38 } 51 39 52 /* using std::hel::jmp_buf; */53 /* using std::hel::longjmp; */54 55 40 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
