Welcome to mirror list, hosted at ThFree Co, Russian Federation.

exp10l.c « math « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}