4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-17 20:09:21 +08:00

9 lines
98 B
C
Raw Normal View History

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