xref: /plan9/sys/src/ape/lib/bsd/shutdown.c (revision 219b2ee8daee37f4aad58d63f21287faa8e4ffdc)
1 #include <sys/types.h>
2 #include <unistd.h>
3 
4 int
shutdown(int fd,int how)5 shutdown(int fd, int how)
6 {
7 	if(how == 2)
8 		close(fd);
9 
10 	return 0;
11 }
12