git: 9front

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