1 2 3 4 5 6 7 8
#undef exp10l #include <math.h> long double exp10l (long double x) { return powl (10.0L, x); }