shithub: plan9front

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