shithub: front

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