plan9fox/sys/src/ape/lib/bsd/shutdown.c

12 lines
117 B
C
Raw Normal View History

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