Projet_SETI_RISC-V/riscv-gnu-toolchain/newlib/winsup/cygwin/math/exp10l.c
2023-03-06 14:48:14 +01:00

8 lines
98 B
C

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