Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
7597fc25a2743d49500926a286da71f8e033936c
/
.
/
src
/
linux
/
pivot_root.c
blob: 17e70c916e97e294204f17434c03bb1ee1964b02 [
file
] [
log
] [
blame
]
#include
"syscall.h"
int
pivot_root
(
const
char
*
new
,
const
char
*
old
)
{
return
syscall
(
SYS_pivot_root
,
new
,
old
);
}