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

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