move register_t and u_int64_t (back) to alltypes
[musl] / src / linux / unshare.c
1 #define _GNU_SOURCE
2 #include <sched.h>
3 #include "syscall.h"
4
5 int unshare(int flags)
6 {
7         return syscall(SYS_unshare, flags);
8 }