mirror of
git://sourceware.org/git/glibc.git
synced 2025-04-06 14:10:30 +08:00
11 lines
235 B
C
11 lines
235 B
C
#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);
|
|
}
|