aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/stdlib/exit.c
blob: 03b54fecc82e50c88c18bc7bce8eb7a1d9e52f97 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <stdint.h>
#include <syscall.h>

void exit(u32 code)
{
	syscall_exit(code);
	while (1) {
	};
}