4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-17 03:49:46 +08:00

9 lines
98 B
C
Raw Normal View History

#undef exp10l
#include <math.h>
long double
exp10l (long double x)
{
return powl (10.0L, x);
}