musl-tcc/src/linux/unshare.c

9 lines
125 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#define _GNU_SOURCE
#include <sched.h>
#include "syscall.h"
int unshare(int flags)
{
return syscall(SYS_unshare, flags);
}