mirror of
https://github.com/fluencelabs/musl
synced 2025-05-01 01:52:14 +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);
|
|
}
|