getgid function

int getgid()

Get the real group ID of the calling process.

Implementation

int getgid() {
  _getgid ??= Libc()
      .dylib
      .lookupFunction<ffi.Uint32 Function(), _dart_getgid>('getgid');
  return _getgid!();
}