blob: 6287490da2c023153ec0bbe856a7bba3801a9d53 [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#include <unistd.h>
2#include "syscall.h"
3
4gid_t getegid(void)
5{
Rich Felkerd878dce2011-04-21 21:52:41 -04006 return __syscall(SYS_getegid);
Rich Felker0b44a032011-02-12 00:22:29 -05007}