Sign in
fuchsia
/
third_party
/
github.com
/
jacereda
/
fsatrace
/
d1908500fef457eeea949ad97abca4663284a9a0
/
.
/
test
/
nolibc.c
blob: 32817fbdbdaa557a86bce40b04077f1166459a88 [
file
]
#include
<sys/syscall.h>
void
_start
()
{
long
_ret
;
__asm__
volatile
(
\
"syscall"
\
:
"=a"
(
_ret
)
\
:
"a"
(
__NR_exit
),
"D"
(
0
)
\
:
"rcx"
,
"r11"
,
"memory"
,
"cc"
\
);
// exit(0);
}