Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
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
);
}