git: 9front

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