summaryrefslogtreecommitdiff
path: root/src/user/lib/stdlib.c
blob: 6f276bd52300e4346037bcae754cbe356f5940b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <camellia/syscalls.h>
#include <unistd.h>

int errno = 0;

int fork(void) {
	return _syscall_fork(0, NULL);
}

int close(handle_t h) {
	return _syscall_close(h);
}