Sign in
mojo
/
mojo-tools
/
abe3e1a6977d09313b0f7afbd74f289aeb20a72a
/
.
/
fusl
/
src
/
linux
/
chroot.c
blob: 1154043fe4d044bdda17db211bcd21bf7f4352a6 [
file
]
#define
_GNU_SOURCE
#include
<unistd.h>
#include
"syscall.h"
int
chroot
(
const
char
*
path
)
{
return
syscall
(
SYS_chroot
,
path
);
}