1 // Copyright 2022 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 ) 18