plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 4fe01a2b112e98271b429738b3f9d617bd348ab1
parent 08166a45489b3246406ed72071eda245b5b96b0a
Author: rsc <devnull@localhost>
Date:   Fri, 31 Dec 2004 05:37:15 +0000

change _p9pow10 to fmtpow10

Diffstat:
Msrc/lib9/fmt/fltfmt.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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)