odd?()
Returns true if fix is an odd number.
static VALUE fix_odd_p(VALUE num) { if (num & 2) { return Qtrue; } return Qfalse; }