1 /* sf_pow10.c -- float version of s_pow10.c.
2 * Modification of sf_pow10.c by Yaakov Selkowitz 2007.
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 * ====================================================
26 float pow10f(float x
) /* wrapper pow10f */
28 float pow10f(x
) /* wrapper pow10f */
35 #ifdef _DOUBLE_IS_32BITS
38 double pow10(double x
)
44 return (double) pow10f((float) x
);
47 #endif /* defined(_DOUBLE_IS_32BITS) */