git: 9front

ref: 12c8e27a761f7bb673e1c94f5f3e3b9807bf99a6
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;
}