summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/bsd/shutdown.c
blob: dcb15a8471c2f3d146acc46aaad6a4852fe7cd20 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <sys/types.h>
#include <unistd.h>

int
shutdown(int fd, int how)
{
	if(how == 2)
		close(fd);

	return 0;
}