libk  Diff

Differences From Artifact [c4373dead4]:

To Artifact [5c15d4cc49]:


     5      5   
     6      6   #include <k/core.h>
     7      7   #include <k/def.h> // so we know what system this is
     8      8   #include <k/type.h>
     9      9   
    10     10   #ifdef KFenv_posix
    11     11   #	define STOPFN kio_posix_exit
    12         -	extern void STOPFN(int);
           12  +	extern noreturn void STOPFN(int);
    13     13   #else
    14     14   	Knoimpl(kstop)
    15     15   #endif
    16     16   
    17         -noreturn void kstop (longstat code) { STOPFN(code); }
           17  +noreturn void kstop (stat_long code) { STOPFN(code); }