diff options
Diffstat (limited to 'src/unistd/chroot.c')
| -rw-r--r-- | src/unistd/chroot.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/unistd/chroot.c b/src/unistd/chroot.c new file mode 100644 index 00000000..84abaeaa --- /dev/null +++ b/src/unistd/chroot.c @@ -0,0 +1,10 @@ +#include <unistd.h> + +int chroot(const char *path) +{ + return 0; +} + +/* +XOPEN(400,600) +*/ |
