diff --git a/core/decimal/decimal.odin b/core/strconv/decimal/decimal.odin similarity index 99% rename from core/decimal/decimal.odin rename to core/strconv/decimal/decimal.odin index 97c586635..15853c5a7 100644 --- a/core/decimal/decimal.odin +++ b/core/strconv/decimal/decimal.odin @@ -1,6 +1,6 @@ // Multiple precision decimal numbers // NOTE: This is only for floating point printing and nothing else -package decimal +package strconv_decimal Decimal :: struct { digits: [384]byte, // big-endian digits diff --git a/core/strconv/generic_float.odin b/core/strconv/generic_float.odin index 59eaa20d5..24cbf3b15 100644 --- a/core/strconv/generic_float.odin +++ b/core/strconv/generic_float.odin @@ -1,6 +1,6 @@ package strconv -using import "core:decimal" +using import "decimal" Int_Flag :: enum { Prefix,