sysconf function

int sysconf(
  1. int name
)

Get the value of the system variable NAME.

Implementation

int sysconf(
  int name,
) {
  _sysconf ??= Libc()
      .dylib
      .lookupFunction<ffi.Int64 Function(ffi.Int32), _dart_sysconf>('sysconf');
  return _sysconf!(
    name,
  );
}