add pivot_root syscall wrapper
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
#include "syscall.h"
|
||||
|
||||
int pivot_root(const char *new, const char *old)
|
||||
{
|
||||
return syscall(SYS_pivot_root, new, old);
|
||||
}
|
||||
Reference in New Issue
Block a user