toaruos/libc/unistd/getegid.c

7 lines
58 B
C
Raw Normal View History

#include <unistd.h>
int getegid() {
return getgid();
}