blob: fde6d6756a48d2c6753219b6104d3ff1dd3716c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
#include "nonstd/syscall.h"
void _exit(int status)
{
__libc.syscall(__libc.syscall_lookup("exit"), status);
for (;;);
}
/*
POSIX(1)
*/
|