]> git.ipfire.org Git - thirdparty/glibc.git/blame - math/e_exp2l.c
Optimize libm
[thirdparty/glibc.git] / math / e_exp2l.c
CommitLineData
b6ab06ce 1#include <math.h>
9277c064 2#include <math_private.h>
b6ab06ce
UD
3
4long double
5__ieee754_exp2l (long double x)
6{
f0cf0902
RM
7 /* This is a very stupid and inprecise implementation. It'll get
8 replaced sometime (soon?). */
9 return __ieee754_expl (M_LN2l * x);
b6ab06ce 10}
0ac5ae23 11strong_alias (__ieee754_exp2l, __exp2l_finite)