1 2 3 4 5 6
#include <stdlib.h> // for _Exit, quick_exit _Noreturn void quick_exit(int status) { _Exit(status); }