corrode
corrode copied to clipboard
exit() not declared as noreturn
When compiling C source that uses exit
, I get a type error because exit is declared to return void (fn exit(__status : i32);
) rather than diverging (fn exit(__status : i32) -> !;
).