shithub: riscv

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