mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
2.5-18.1
This commit is contained in:
10
math/e_exp2l.c
Normal file
10
math/e_exp2l.c
Normal file
@ -0,0 +1,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);
|
||||
}
|
Reference in New Issue
Block a user