git: 9front

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