shithub: riscv

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