remquo method

double remquo(
  1. double _X,
  2. double _Y,
  3. Pointer<Int> _Z
)

Implementation

double remquo(
  double _X,
  double _Y,
  ffi.Pointer<ffi.Int> _Z,
) {
  return _remquo(
    _X,
    _Y,
    _Z,
  );
}