gethostid function

int gethostid()

Return identifier for the current host.

Implementation

int gethostid() {
  _gethostid ??= Libc()
      .dylib
      .lookupFunction<ffi.Int64 Function(), _dart_gethostid>('gethostid');
  return _gethostid!();
}