plan9fox/sys/src/ape/lib/bsd/shutdown.c
2011-03-30 19:35:09 +03:00

12 lines
117 B
C

#include <sys/types.h>
#include <unistd.h>
int
shutdown(int fd, int how)
{
if(how == 2)
close(fd);
return 0;
}