shithub: riscv

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