Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/setjmp.h

    r6b96dc06 ra35a3d8  
    3535
    3636#include <libarch/fibril_context.h>
    37 #include <_bits/__noreturn.h>
    3837
    3938typedef context_t jmp_buf[1];
    4039
    4140extern int __setjmp(jmp_buf) __attribute__((returns_twice));
    42 extern __noreturn void __longjmp(jmp_buf, int);
     41extern _Noreturn void __longjmp(jmp_buf, int);
    4342
    4443#define setjmp __setjmp
    45 extern __noreturn void longjmp(jmp_buf, int);
     44extern _Noreturn void longjmp(jmp_buf, int);
    4645
    4746#endif
Note: See TracChangeset for help on using the changeset viewer.