blob: 624ca12e38a7b79e669739bf8961ea3b3c55a742 [file] [log] [blame]
/* 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