diff options
Diffstat (limited to 'src/unistd/getgid.c')
| -rw-r--r-- | src/unistd/getgid.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/unistd/getgid.c b/src/unistd/getgid.c new file mode 100644 index 00000000..03c5f62b --- /dev/null +++ b/src/unistd/getgid.c @@ -0,0 +1,12 @@ +#include "stddef.h" +#include "sys/types.h" +#include <unistd.h> +#include "nonstd/syscall.h" + +gid_t getgid(void) +{ + SCNOFAIL(); +} +/* +POSIX(1) +*/ |
