diff options
Diffstat (limited to 'src/lib/strconv/itoa.go')
| -rw-r--r-- | src/lib/strconv/itoa.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/strconv/itoa.go b/src/lib/strconv/itoa.go index 698c553d27..256289ada9 100644 --- a/src/lib/strconv/itoa.go +++ b/src/lib/strconv/itoa.go @@ -4,7 +4,7 @@ package strconv -export func itoa64(i int64) string { +export func Itoa64(i int64) string { if i == 0 { return "0" } @@ -29,10 +29,9 @@ export func itoa64(i int64) string { } return string(b[bp:len(b)]) - //return string((&b)[bp:len(b)]) } -export func itoa(i int) string { - return itoa64(int64(i)); +export func Itoa(i int) string { + return Itoa64(int64(i)); } |
