git: 9front

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