github.com/juelite/golang.org-x-sys@v0.0.0-20181121071242-7b69e1c5db33/unix/gccgo_linux_sparc64.go (about)

     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  }