git: 9front

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