blob: 624ca12e38a7b79e669739bf8961ea3b3c55a742 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* vi: set sw=4 ts=4: */
/*
* unshare() for uClibc
*
* Copyright (C) 2011 Henning Heinold <heinold@inf.fu-berlin.de>
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#include <sys/syscall.h>
#include <sched.h>
#if defined __NR_unshare
_syscall1(int, unshare, int, flags)
#endif
|