summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/setgid.c
blob: 2ee0835998de91fe02c7e833a5146905223f21e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <unistd.h>
#include <rtems/userenv.h>

/*
 *
 *  4.2.2 Set User and Group IDs, P1003.1b-1993, p. 84
 */
int setgid(
  gid_t  gid
)
{
  _POSIX_types_Gid = gid;
  return 0;
}