Files
rtems/cpukit/libcsupport/src/setgid.c
Sebastian Huber 80cf60efec Canonicalize config.h include
Use the following variant which was already used by most source files:

  #ifdef HAVE_CONFIG_H
  #include "config.h"
  #endif
2020-04-16 07:30:00 +02:00

19 lines
231 B
C

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