aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/posix_close.c
blob: 8418886b3647f3f1943ee039cf0c683d52884fdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <unistd.h>

int posix_close(int fd, int flags)
{
	return close(fd);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif