shithub: riscv

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