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