8 lines
96 B
C
8 lines
96 B
C
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
|
|
void exit(int val) {
|
|
_handle_atexit();
|
|
_exit(val);
|
|
}
|