git: 9front

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