ReactOS 0.4.15-dev-7924-g5949c20
gid.c File Reference
#include <schily/types.h>
#include <schily/unistd.h>
#include <schily/standard.h>
#include <schily/schily.h>
Include dependency graph for gid.c:

Go to the source code of this file.

Functions

EXPORT gid_t getgid ()
 
EXPORT gid_t getegid ()
 
EXPORT int setgid (gid_t gid)
 
EXPORT int setegid (gid_t gid)
 

Function Documentation

◆ getegid()

EXPORT gid_t getegid ( )

Definition at line 37 of file gid.c.

38{
39 return (0);
40}

Referenced by authunix_create_default(), and eaccess().

◆ getgid()

EXPORT gid_t getgid ( )

Definition at line 27 of file gid.c.

28{
29 return (0);
30}

Referenced by eaccess(), generate_random(), and init_fstatbuf().

◆ setegid()

EXPORT int setegid ( gid_t  gid)

Definition at line 58 of file gid.c.

60{
61 return (0);
62}

◆ setgid()

EXPORT int setgid ( gid_t  gid)

Definition at line 47 of file gid.c.

49{
50 return (0);
51}