aboutsummaryrefslogtreecommitdiff
path: root/lib/sys/close.h
blob: 5a6fbe46faeb0524f5cbff2b73e76dbacaaca122 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef CLOSE_H
#define CLOSE_H

#include "syscalls.h"

static int close(unsigned int fd)
{
	syscall(CLOSE, fd);
}

#endif