git: 9front

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