diff options
Diffstat (limited to 'winsup/cygwin/math/exp10l.c')
-rw-r--r-- | winsup/cygwin/math/exp10l.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/winsup/cygwin/math/exp10l.c b/winsup/cygwin/math/exp10l.c new file mode 100644 index 000000000..821b8f5c3 --- /dev/null +++ b/winsup/cygwin/math/exp10l.c @@ -0,0 +1,8 @@ +#undef exp10l +#include <math.h> + +long double +exp10l (long double x) +{ + return powl (10.0L, x); +} |