git: 9front

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