1 /* @(#)s_pow10.c 5.1 93/09/24 */
2 /* Modification from s_exp10.c Yaakov Selkowitz 2007. */
5 * ====================================================
6 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8 * Developed at SunPro, a Sun Microsystems, Inc. business.
9 * Permission to use, copy, modify, and distribute this
10 * software is freely granted, provided that this notice
12 * ====================================================
17 <<pow10>>, <<pow10f>>---base 10 power functions
25 double pow10(double <[x]>);
26 float pow10f(float <[x]>);
29 <<pow10>> and <<pow10f>> calculate 10 ^ <[x]>, that is,
31 10 raised to the power <[x]>.
38 On success, <<pow10>> and <<pow10f>> return the calculated value.
39 If the result underflows, the returned value is <<0>>. If the
40 result overflows, the returned value is <<HUGE_VAL>>. In
41 either case, <<errno>> is set to <<ERANGE>>.
44 <<pow10>> and <<pow10f>> are GNU extensions.
56 #ifndef _DOUBLE_IS_32BITS
59 double pow10(double x
) /* wrapper pow10 */
61 double pow10(x
) /* wrapper pow10 */
68 #endif /* defined(_DOUBLE_IS_32BITS) */