(void _exit(int status) {
#if 0
/* This attempt failed. Works on some programs but fails on others like assert_fail.c
* The problem seems to be that at this point newlib has already done some deinitialization
* which prevents printf from working, and printf fails and returns -1.
*/
if (status != 0) {
/* https://github.com/cirosantilli/linux-kernel-module-cheat#magic-failure-string */
printf("lkmc_exit_status_%d\n", status);
}
#endif