shithub: riscv

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