random_r method

int random_r(
  1. Pointer<random_data> __buf,
  2. Pointer<Int32> __result
)

Implementation

int random_r(
  ffi.Pointer<random_data> __buf,
  ffi.Pointer<ffi.Int32> __result,
) {
  return _random_r(
    __buf,
    __result,
  );
}