shithub: riscv

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