diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-09-25 19:07:18 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-09-25 19:07:18 +0000 |
commit | c7a58c2edadb8fce84ab2f8b129a87eb19bdc485 (patch) | |
tree | b0ce15fb6eb16bbfe34612a21ffc16709d397b33 /libm/w_exp2.c | |
parent | c8d8b6d30a29b353637cd1c7379402bff2481b79 (diff) |
- add some more math functions (patch from gentoo/solar)
Diffstat (limited to 'libm/w_exp2.c')
-rw-r--r-- | libm/w_exp2.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libm/w_exp2.c b/libm/w_exp2.c new file mode 100644 index 000000000..20a9cf35b --- /dev/null +++ b/libm/w_exp2.c @@ -0,0 +1,27 @@ + +/* @(#)w_exp2.c 5.1 93/09/24 */ +/* + * ==================================================== + * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. + * + * Developed at SunPro, a Sun Microsystems, Inc. business. + * Permission to use, copy, modify, and distribute this + * software is freely granted, provided that this notice + * is preserved. + * ==================================================== + */ + +#include "math.h" +#include "math_private.h" + +libm_hidden_proto(exp2) +#ifdef __STDC__ + double exp2(double x) +#else + double exp2(x) + double x; +#endif +{ + return pow(2.0, x); +} +libm_hidden_def(exp2) |