[ARM] Fix typo in comment in arm_expand_prologue
[official-gcc.git] / libgo / go / os / sys_linux.go
blob76cdf5043239963d6a01430929edaf04af6e777a
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 // Linux-specific
7 package os
9 func hostname() (name string, err error) {
10 f, err := Open("/proc/sys/kernel/hostname")
11 if err != nil {
12 return "", err
14 defer f.Close()
16 var buf [512]byte // Enough for a DNS name.
17 n, err := f.Read(buf[0:])
18 if err != nil {
19 return "", err
22 if n > 0 && buf[n-1] == '\n' {
23 n--
25 return string(buf[0:n]), nil