From c7a58c2edadb8fce84ab2f8b129a87eb19bdc485 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Thu, 25 Sep 2008 19:07:18 +0000 Subject: - add some more math functions (patch from gentoo/solar) --- libm/w_exp2.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 libm/w_exp2.c (limited to 'libm/w_exp2.c') 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) -- cgit v1.2.3