git: 9front

ref: f1610a98e6014a6a846a43440bc34e6f9fbbd760
dir: /sys/src/ape/lib/ap/plan9/chroot.c/

View raw version
#include <unistd.h>
#include <errno.h>

int
chroot(const char*)
{
	errno = EIO;
	return -1;
}