Function getegid [src]
Prototype
pub fn getegid() gid_t
Source
pub fn getegid() gid_t {
if (@hasField(SYS, "getegid32")) {
return @as(gid_t, @intCast(syscall0(.getegid32)));
} else {
return @as(gid_t, @intCast(syscall0(.getegid)));
}
}