1 /* wf_log10.c -- float version of w_log10.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
13 * ====================================================
24 float log10f(float x
) /* wrapper log10f */
26 float log10f(x
) /* wrapper log10f */
31 return __ieee754_log10f(x
);
34 z
= __ieee754_log10f(x
);
35 if(_LIB_VERSION
== _IEEE_
|| isnan(x
)) return z
;
51 #ifdef _DOUBLE_IS_32BITS
54 double log10(double x
)
60 return (double) log10f((float) x
);
63 #endif /* defined(_DOUBLE_IS_32BITS) */