git: 9front

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