shithub: riscv

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