Sign in
mojo
/
mojo-testing
/
bbc0e088b4a3b02a89b563db78314a89d560be7f
/
.
/
fusl
/
src
/
linux
/
pivot_root.c
blob: 8f0d97ea8fdc8f74df9debb6838f6502a502c659 [
file
]
#include
"syscall.h"
int
pivot_root
(
const
char
*
new
,
const
char
*
old
)
{
return
syscall
(
SYS_pivot_root
,
new
,
old
);
}