git: 9front

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