summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/math/pow10l.c
blob: ad5348951a1a9821f8c7a86a03bd7242f1d4412b (plain)
1
2
3
4
5
6
7
8
#undef pow10l
#include <math.h>

long double
pow10l (long double x)
{
  return powl (10.0L, x);
}