git: 9front

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