summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/setgroups.c
blob: 322fa0e27a1705436a0140b87885635535455c63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (c) 2016 embedded brains GmbH.  All rights reserved.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#include <unistd.h>

int setgroups(int size, const gid_t *list)
{
	/* FIXME: Implement this function properly. Currently it only returns a
	 * success. */

	(void) size;
	(void) list;

	return 0;
}