git: 9front

ref: 1e8a9ebb0f76b0ebe8eb31d79c44324c1c1ed70f
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;
}