Sign in
nest-open-source
/
nest-cam
/
v366
/
glibc
/
refs/heads/main
/
.
/
math
/
e_exp2l.c
blob: 7e598d8d2da6b21747f3a4797e5c2e0cd6a66fd6 [
file
] [
log
] [
blame
] [
edit
]
#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
);
}