shithub: riscv

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