repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* sysdeps/posix/getaddrinfo.c (getaddrinfo): Add _res_hconf_init
[glibc.git]
/
math
/
e_exp2l.c
blob
7e598d8d2da6b21747f3a4797e5c2e0cd6a66fd6
1
#include <math.h>
2
#include
"math_private.h"
3
4
long double
5
__ieee754_exp2l
(
long double
x
)
6
{
7
/* This is a very stupid and inprecise implementation. It'll get
8
replaced sometime (soon?). */
9
return
__ieee754_expl
(
M_LN2l
*
x
);
10
}