Sign in
cobalt
/
cobalt
/
fc84fc2a551a0cf60d391fb3e7d8229e6f9a9daf
/
.
/
third_party
/
musl
/
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
);
}