blob: 56332692c4214d6f307815fc5db3efd05469a6c0 [file] [log] [blame]
David K. Bainbridge215e0242017-09-05 23:18:24 -07001// 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
7package unix
8
9import "syscall"
10
11//extern sysconf
12func realSysconf(name int) int64
13
14func 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}