log10 185 math.c #define log10(x) ((x) < 0.0 ? nan() : log10(x)) log10 203 math.c return rb_float_new(log10(RFLOAT(x)->value));