git: 9front

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