libc/winsup/cygwin/math/pow10l.c

9 lines
98 B
C

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