Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
7597fc25a2743d49500926a286da71f8e033936c
/
.
/
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
);
}