git: 9front

ref: 5deae3fbb53dc94ce084a6d15e9bc5cf421f0d6f
dir: /sys/src/ape/lib/bsd/shutdown.c/

View raw version
#include <sys/types.h>
#include <unistd.h>

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

	return 0;
}