git: 9front

ref: 29b7a5ea3d9a74232a6d23c1fb288f1240bcc2ba
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;
}