shithub: riscv

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