tchange _p9pow10 to fmtpow10 - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 4fe01a2b112e98271b429738b3f9d617bd348ab1
(DIR) parent 08166a45489b3246406ed72071eda245b5b96b0a
(HTM) Author: rsc <devnull@localhost>
Date: Fri, 31 Dec 2004 05:37:15 +0000
change _p9pow10 to fmtpow10
Diffstat:
M src/lib9/fmt/fltfmt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/src/lib9/fmt/fltfmt.c b/src/lib9/fmt/fltfmt.c
t@@ -55,7 +55,7 @@ static double pows10[] =
1e150, 1e151, 1e152, 1e153, 1e154, 1e155, 1e156, 1e157, 1e158, 1e159,
};
-#define pow10(x) _p9pow10(x)
+#define pow10(x) fmtpow10(x)
static double
pow10(int n)