* sysdeps/x86_64/memset.S: Jump from bzero to memset using
[glibc/pb-stable.git] / math / e_exp2l.c
blob7e598d8d2da6b21747f3a4797e5c2e0cd6a66fd6
1 #include <math.h>
2 #include "math_private.h"
4 long double
5 __ieee754_exp2l (long double x)
7 /* This is a very stupid and inprecise implementation. It'll get
8 replaced sometime (soon?). */
9 return __ieee754_expl (M_LN2l * x);