2013-12-05 Richard Biener <rguenther@suse.de>
[official-gcc.git] / libgo / go / syscall / str.go
blob0fce842e8c1351bdfac6723c51a0a76875037fc8
1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 package syscall
7 func itoa(val int) string { // do it here rather than with fmt to avoid dependency
8 if val < 0 {
9 return "-" + itoa(-val)
11 var buf [32]byte // big enough for int64
12 i := len(buf) - 1
13 for val >= 10 {
14 buf[i] = byte(val%10 + '0')
15 i--
16 val /= 10
18 buf[i] = byte(val + '0')
19 return string(buf[i:])