Sign in
cobalt
/
cobalt
/
25399f97090f8a86f56525c38486080cb2747250
/
.
/
src
/
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
);
}