blob: c3af1ea77d5a598fbbccc5cc6bb92a7e9adbe5a3 [file] [log] [blame]
Robert Griebl1fca5582002-06-04 20:45:46 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Taken from the set of syscalls for uClibc
4 *
5 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
6 * <andersen@lineo.com>, <andersee@debian.org>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU Library General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
16 * for more details.
17 *
18 * You should have received a copy of the GNU Library General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
24#include "busybox.h"
25
26#include <errno.h>
27#include <unistd.h>
28#include <features.h>
29#include <sys/types.h>
30/* Kernel headers before 2.1.mumble need this on the Alpha to get
31 _syscall* defined. */
32#define __LIBRARY__
33#include <sys/syscall.h>
34#if __GNU_LIBRARY__ < 5
35/* This is needed for libc5 */
36#include <asm/unistd.h>
37#endif
Eric Andersen887ca792002-07-03 23:19:26 +000038#include "grp_.h"
Robert Griebl1fca5582002-06-04 20:45:46 +000039
40//#define __NR_setgroups 81
41_syscall2(int, setgroups, size_t, size, const gid_t *, list);
42