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