_Exit.c (103B)
1 #include <stdlib.h> 2 3 #include "../syscall.h" 4 5 #undef _Exit 6 7 void 8 _Exit(int status) 9 { 10 _exit(status); 11 }