git: 9front

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