shithub: riscv

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