mirror of
https://github.com/fluencelabs/musl
synced 2025-07-04 09:02:02 +00:00
9 lines
125 B
C
9 lines
125 B
C
![]() |
#define _GNU_SOURCE
|
||
|
#include <sched.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int unshare(int flags)
|
||
|
{
|
||
|
return syscall(SYS_unshare, flags);
|
||
|
}
|