// Copyright 2016 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.// +build gccgo,linux,sparc64packageuniximport"syscall"//extern sysconffuncrealSysconf(nameint)int64funcsysconf(nameint)(nint64,errsyscall.Errno){r:=realSysconf(name)ifr<0{return0,syscall.GetErrno()}returnr,0}