/*
 *  call-seq:
 *     big / other     => Numeric
 *
 *  Divides big by other, returning the result.
 */

VALUE
rb_big_div(VALUE x, VALUE y)
{
  return rb_big_divide(x, y, '/');
}