Function nc::call::getegid

source ·
pub unsafe fn getegid() -> gid_t
Expand description

Get the effective group ID of the calling process.

§Example

let egid = unsafe { nc::getegid() };
assert!(egid > 0);