musl-tcc/src/linux/pivot_root.c

7 lines
118 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include "syscall.h"
int pivot_root(const char *new, const char *old)
{
return syscall(SYS_pivot_root, new, old);
}