shithub: riscv

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