source: rtems/cpukit/libcsupport/src/setgroups.c @ 255fe43

Last change on this file since 255fe43 was 255fe43, checked in by Joel Sherrill <joel@…>, on 03/01/22 at 20:40:44

cpukit/: Scripted embedded brains header file clean up

Updates #4625.

  • Property mode set to 100644
File size: 431 bytes
Line 
1/*
2 * Copyright (c) 2016 embedded brains GmbH.  All rights reserved.
3 *
4 * The license and distribution terms for this file may be
5 * found in the file LICENSE in this distribution or at
6 * http://www.rtems.org/license/LICENSE.
7 */
8
9#include <unistd.h>
10
11int setgroups(int size, const gid_t *list)
12{
13        /* FIXME: Implement this function properly. Currently it only returns a
14         * success. */
15
16        (void) size;
17        (void) list;
18
19        return 0;
20}
Note: See TracBrowser for help on using the repository browser.