/* * call-seq: * stat == other => true or false * * Returns +true+ if the integer value of _stat_ * equals <em>other</em>. */ static VALUE pst_equal(st1, st2) VALUE st1, st2; { if (st1 == st2) return Qtrue; return rb_equal(pst_to_i(st1), st2); }