2 /* @(#)z_log10f.c 1.0 98/08/13 */
3 /******************************************************************
7 * x - floating point value
13 * This routine returns the logarithm of x (base 10).
15 *****************************************************************/
23 return (logarithmf (x
, 1));
26 #ifdef _DOUBLE_IS_32BITS
28 double log10 (double x
)
30 return (double) log10f ((float) x
);
33 #endif /* defined(_DOUBLE_IS_32BITS) */