...

Source file src/github.com/tklauser/go-sysconf/sysconf_values_freebsd.go

Documentation: github.com/tklauser/go-sysconf

     1  // Copyright 2021 Tobias Klauser. 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  //go:build ignore
     6  // +build ignore
     7  
     8  package sysconf
     9  
    10  /*
    11  #include <limits.h>
    12  */
    13  import "C"
    14  
    15  const (
    16  	_LONG_MAX = C.LONG_MAX
    17  	_SHRT_MAX = C.SHRT_MAX
    18  )
    19  

View as plain text