source: rtems/cpukit/libcsupport/src/getgroups.c @ 98b785e

4.115
Last change on this file since 98b785e was b300e72d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/30/09 at 04:46:31

Remove unused includes.

  • Property mode set to 100644
File size: 332 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#if HAVE_CONFIG_H
6#include "config.h"
7#endif
8
9#include <sys/types.h>
10#include <unistd.h>
11
12/*PAGE
13 *
14 *  4.2.3 Get Supplementary IDs, P1003.1b-1993, p. 86
15 */
16
17int getgroups(
18  int    gidsetsize __attribute__((unused)),
19  gid_t  grouplist[] __attribute__((unused))
20)
21{
22  return 0;  /* no supplemental group ids */
23}
Note: See TracBrowser for help on using the repository browser.