diff options
author | rsc <devnull@localhost> | 2004-12-31 05:37:15 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-12-31 05:37:15 +0000 |
commit | 4fe01a2b112e98271b429738b3f9d617bd348ab1 (patch) | |
tree | f288cbb59b489b5e1d44074ae4d08059b8232477 /src | |
parent | 08166a45489b3246406ed72071eda245b5b96b0a (diff) | |
download | plan9port-4fe01a2b112e98271b429738b3f9d617bd348ab1.tar.gz plan9port-4fe01a2b112e98271b429738b3f9d617bd348ab1.tar.bz2 plan9port-4fe01a2b112e98271b429738b3f9d617bd348ab1.zip |
change _p9pow10 to fmtpow10
Diffstat (limited to 'src')
-rw-r--r-- | src/lib9/fmt/fltfmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib9/fmt/fltfmt.c b/src/lib9/fmt/fltfmt.c index 2604e4ff..8afd024a 100644 --- a/src/lib9/fmt/fltfmt.c +++ b/src/lib9/fmt/fltfmt.c @@ -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) |