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

#include "syscalls.h"

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

#endif