blob: 7e598d8d2da6b21747f3a4797e5c2e0cd6a66fd6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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);
}
|