8 lines
143 B
C
8 lines
143 B
C
|
#define __LIBRARY__
|
||
|
#include <unistd.h>
|
||
|
|
||
|
volatile void _exit(int exit_code)
|
||
|
{
|
||
|
__asm__("int $0x80"::"a" (__NR_exit),"b" (exit_code));
|
||
|
}
|