move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / linux / pivot_root.c
blob17e70c916e97e294204f17434c03bb1ee1964b02
1 #include "syscall.h"
3 int pivot_root(const char *new, const char *old)
5 return syscall(SYS_pivot_root, new, old);