diff --git a/src/lib/fmt/format.go b/src/lib/fmt/format.go index 1c78d80c5e..a66440f261 100644 --- a/src/lib/fmt/format.go +++ b/src/lib/fmt/format.go @@ -14,16 +14,6 @@ const nPows10 = 160; var ldigits string = "0123456789abcdef" // var not const because we take its address var udigits string = "0123456789ABCDEF" -var pows10 [nPows10] float64; - -func init() { - pows10[0] = 1.0e0; - pows10[1] = 1.0e1; - for i:=2; i