Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
62275f7876b602ccbc8f0712ba4cf75bb8597bbe
/
.
/
src
/
linux
/
chroot.c
blob: 81363a6b48b2e157967531fcf6565d99c1261886 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
chroot
(
const
char
*
path
)
{
return
syscall1
(
__NR_chroot
,
(
long
)
path
);
}