git: 9front

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