shithub: riscv

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