OSDN Git Service

new repo
[bytom/vapor.git] / vendor / golang.org / x / sys / unix / gccgo_linux_sparc64.go
1 // Copyright 2016 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.
4
5 // +build gccgo,linux,sparc64
6
7 package unix
8
9 import "syscall"
10
11 //extern sysconf
12 func realSysconf(name int) int64
13
14 func sysconf(name int) (n int64, err syscall.Errno) {
15         r := realSysconf(name)
16         if r < 0 {
17                 return 0, syscall.GetErrno()
18         }
19         return r, 0
20 }