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
8package sysconf
9
10/*
11#include <limits.h>
12*/
13import "C"
14
15const (
16	_LONG_MAX = C.LONG_MAX
17	_SHRT_MAX = C.SHRT_MAX
18)
19