shithub: riscv

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