git: 9front

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