git: 9front

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