summaryrefslogtreecommitdiff
path: root/src/unistd/close.c
blob: 728d729b02a06c9f3ea0307a20863525020ad28f (plain) (blame)
1
2
3
4
5
6
7
8
#include <unistd.h>
#include "syscall.h"
#include "libc.h"

int close(int fd)
{
	return syscall_cp(SYS_close, fd);
}