8 lines
98 B
C
8 lines
98 B
C
#undef exp10l
|
|
#include <math.h>
|
|
|
|
long double
|
|
exp10l (long double x)
|
|
{
|
|
return powl (10.0L, x);
|
|
}
|