git: 9front

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