git: 9front

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