1 2 3 4 5 6 7
#include <syscall.h> void _exit(int status) { __syscall(exit, status); __builtin_unreachable(); }