flst / upstream /emscripten /system /lib /libc /musl /src /linux /pivot_root.c
arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
118 Bytes
#include "syscall.h"
int pivot_root(const char *new, const char *old)
{
return syscall(SYS_pivot_root, new, old);
}