Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/csetjmp

    rc735afb rbc56f30  
    3030#define LIBCPP_CSETJMP
    3131
    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>
    4533
    4634namespace std
    4735{
    48     /* using std::hel::jmp_buf; */
    49     /* using std::hel::longjmp; */
     36    using ::jmp_buf;
     37    using ::longjmp;
    5038}
    5139
    52 /* using std::hel::jmp_buf; */
    53 /* using std::hel::longjmp; */
    54 
    5540#endif
Note: See TracChangeset for help on using the changeset viewer.