aboutsummaryrefslogtreecommitdiffstats
path: root/src/stdlib.c
blob: 3f11d578e403099a7427ff2b499c79f67d2dcad9 (plain)
1
2
3
4
5
6
void _exit(int code)
{
	(void)code;
	for (;;);
}