pivot_root.c 118 B

123456
  1. #include "syscall.h"
  2. int pivot_root(const char *new, const char *old)
  3. {
  4. return syscall(SYS_pivot_root, new, old);
  5. }