git: 9front

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