aboutsummaryrefslogtreecommitdiff
path: root/lib/sys/exit.h
blob: 516d7147bef5d4f6e36dd20bfe3ab445c869df02 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef EXIT_H
#define EXIT_H

#include "syscalls.h"

_Noreturn void exit(int error_code)
{
	syscall(EXIT, error_code);
}

#endif