git: 9front

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