shithub: front

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