git: 9front

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