1 2 3 4 5 6 7
#include <stdlib.h> __attribute__ ((noreturn)) void _exit(int st) { while (1); } int atexit(void (*f)(void)) { return 0; }