1 // Copyright 2011 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.
9 func hostname() (name
string, err error
) {
10 f
, err
:= Open("#c/sysname")
17 n
, err
:= f
.Read(buf
[:len(buf
)-1])
25 return string(buf
[0:n
]), nil