shithub: riscv

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