blob: d6d01550e2491f6bd687866193725e9836feaae3 (
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);
}
|