git: 9front

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