Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
3c699435f69c74a12f5fe18c0181fba6f1dd0479
/
.
/
src
/
newlib
/
winsup
/
cygwin
/
math
/
exp10l.c
blob: 821b8f5c39f06af972b66d8a3cce3f5b73ad65e5 [
file
]
#undef
exp10l
#include
<math.h>
long
double
exp10l
(
long
double
x
)
{
return
powl
(
10.0L
,
x
);
}