git: 9front

ref: 6ece1185b548d01c3617bf372ed47e4fe2a82333
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;
}