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

4.115
Last change on this file since 98b785e was e72bc298, checked in by Joel Sherrill <joel.sherrill@…>, on 07/01/10 at 15:37:48

2010-07-01 Joel Sherrill <joel.sherrill@…>

  • libcsupport/src/getegid.c, libcsupport/src/gxx_wrappers.c, libcsupport/src/issetugid.c: Formatting and spacing.
  • Property mode set to 100644
File size: 409 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#if HAVE_CONFIG_H
6#include "config.h"
7#endif
8
9#include <limits.h>
10#include <string.h>
11#include <sys/types.h>
12
13#include <rtems/system.h>
14#include <rtems/score/object.h>
15#include <rtems/seterr.h>
16#include <rtems/userenv.h>
17
18/*
19 *  4.2.1 Get Real User, Effective User, Ral Group, and Effective Group IDs,
20 *        P1003.1b-1993, p. 84
21 */
22
23gid_t getegid( void )
24{
25  return _POSIX_types_Egid;
26}
Note: See TracBrowser for help on using the repository browser.