blob: 8f0d97ea8fdc8f74df9debb6838f6502a502c659 [file] [log] [blame]
#include "syscall.h"
int pivot_root(const char* new, const char* old) {
return syscall(SYS_pivot_root, new, old);
}