getegid function

int getegid()

Get the effective group ID of the calling process.

Implementation

int getegid() {
  _getegid ??= Libc()
      .dylib
      .lookupFunction<ffi.Uint32 Function(), _dart_getegid>('getegid');
  return _getegid!();
}