shithub: riscv

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