summaryrefslogblamecommitdiffstats
path: root/cpukit/libcsupport/src/setgid.c
blob: 3f59a2a13d5d1e5ebd28faf4411408d5503055c6 (plain) (tree)
1
2
3
4
5



                   
                   












                                                      
#if 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;
}