repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
delete a redundant if in dynamic linker ctor execution loop
[musl.git]
/
src
/
linux
/
pivot_root.c
blob
17e70c916e97e294204f17434c03bb1ee1964b02
1
#include
"syscall.h"
2
3
int
pivot_root
(
const char
*
new
,
const char
*
old
)
4
{
5
return
syscall
(
SYS_pivot_root
,
new
,
old
);
6
}