From 37da2899f40661e3e9631e497da8dc59b971cbd0 Mon Sep 17 00:00:00 2001 From: "Charles.Forsyth" Date: Fri, 22 Dec 2006 17:07:39 +0000 Subject: 20060303a --- libmath/pow10.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 libmath/pow10.c (limited to 'libmath/pow10.c') diff --git a/libmath/pow10.c b/libmath/pow10.c new file mode 100644 index 00000000..46bf5c31 --- /dev/null +++ b/libmath/pow10.c @@ -0,0 +1,8 @@ +#include "lib9.h" +#include "mathi.h" + +double +ipow10(int n) +{ + return pow(10.,n); +} -- cgit v1.2.3