summaryrefslogtreecommitdiff
path: root/math/e_exp2l.c
blob: e7e493933a9f611a7a317fe6ae2f155a820820d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <math.h>
#include <math_private.h>

long double
__ieee754_exp2l (long double x)
{
  /* This is a very stupid and inprecise implementation.  It'll get
     replaced sometime (soon?).  */
  return __ieee754_expl (M_LN2l * x);
}
strong_alias (__ieee754_exp2l, __exp2l_finite)