git: 9front

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