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