2 /* @(#)w_exp2.c 5.1 93/09/24 */
4 * ====================================================
5 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
7 * Developed at SunPro, a Sun Microsystems, Inc. business.
8 * Permission to use, copy, modify, and distribute this
9 * software is freely granted, provided that this notice
11 * ====================================================
16 <<exp2>>, <<exp2f>>---exponential
24 double exp2(double <[x]>);
25 float exp2f(float <[x]>);
36 <<exp2>> and <<exp2f>> calculate 2 ^ <[x]>, that is,
38 2 raised to the power <[x]>.
44 You can use the (non-ANSI) function <<matherr>> to specify
45 error handling for these functions.
48 On success, <<exp2>> and <<exp2f>> return the calculated value.
49 If the result underflows, the returned value is <<0>>. If the
50 result overflows, the returned value is <<HUGE_VAL>>. In
51 either case, <<errno>> is set to <<ERANGE>>.
63 #ifndef _DOUBLE_IS_32BITS
66 double exp2(double x
) /* wrapper exp2 */
68 double exp2(x
) /* wrapper exp2 */
75 #endif /* defined(_DOUBLE_IS_32BITS) */