add setxid.c for new set*id() framework. missed in last commit.
[oweals/musl.git] / src / linux / pivot_root.c
1 #include "syscall.h"
2
3 int pivot_root(const char *new, const char *old)
4 {
5         return syscall(SYS_pivot_root, new, old);
6 }