diff options
author | spew <devnull@localhost> | 2018-06-20 22:19:37 -0400 |
---|---|---|
committer | spew <devnull@localhost> | 2018-06-20 22:19:37 -0400 |
commit | 3b376b43af24f8013d330eb2eb9c3b78849bb7c3 (patch) | |
tree | 27c03c0459a26d942d97f11142569d7ea4f4a88d /sys/src/ape/lib/ap/plan9/chroot.c | |
parent | 8dd003eb04aacf13c4a3a3123269a980c03504f9 (diff) |
ape: provide bogus chroot implementation
Diffstat (limited to 'sys/src/ape/lib/ap/plan9/chroot.c')
-rw-r--r-- | sys/src/ape/lib/ap/plan9/chroot.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/src/ape/lib/ap/plan9/chroot.c b/sys/src/ape/lib/ap/plan9/chroot.c new file mode 100644 index 000000000..ed270ec81 --- /dev/null +++ b/sys/src/ape/lib/ap/plan9/chroot.c @@ -0,0 +1,9 @@ +#include <unistd.h> +#include <errno.h> + +int +chroot(const char*) +{ + errno = EIO; + return -1; +} |