Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android13-d4-release
/
.
/
src
/
linux
/
chroot.c
blob: 0e69f145dee37cbdc865f6cf6e222a1658d58cdc [
file
] [
log
] [
blame
] [
edit
]
#define
_GNU_SOURCE
#include
<unistd.h>
#include
"syscall.h"
int
chroot
(
const
char
*
path
)
{
return
syscall
(
SYS_chroot
,
path
);
}