_limits.h revision 108175
1169691Skan/*
2169691Skan * Copyright (c) 1988, 1993
3169691Skan *	The Regents of the University of California.  All rights reserved.
4169691Skan *
5169691Skan * Redistribution and use in source and binary forms, with or without
6169691Skan * modification, are permitted provided that the following conditions
7169691Skan * are met:
8169691Skan * 1. Redistributions of source code must retain the above copyright
9169691Skan *    notice, this list of conditions and the following disclaimer.
10169691Skan * 2. Redistributions in binary form must reproduce the above copyright
11169691Skan *    notice, this list of conditions and the following disclaimer in the
12169691Skan *    documentation and/or other materials provided with the distribution.
13169691Skan * 3. All advertising materials mentioning features or use of this software
14169691Skan *    must display the following acknowledgement:
15169691Skan *	This product includes software developed by the University of
16169691Skan *	California, Berkeley and its contributors.
17169691Skan * 4. Neither the name of the University nor the names of its contributors
18169691Skan *    may be used to endorse or promote products derived from this software
19169691Skan *    without specific prior written permission.
20169691Skan *
21169691Skan * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22169691Skan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23169691Skan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24169691Skan * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25169691Skan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26169691Skan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27169691Skan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28169691Skan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29169691Skan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30169691Skan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31169691Skan * SUCH DAMAGE.
32169691Skan *
33169691Skan *	@(#)limits.h	8.3 (Berkeley) 1/4/94
34169691Skan * $FreeBSD: head/sys/i386/include/_limits.h 108175 2002-12-22 06:38:45Z tjr $
35169691Skan */
36169691Skan
37169691Skan#ifndef _MACHINE_LIMITS_H_
38169691Skan#define	_MACHINE_LIMITS_H_
39169691Skan
40169691Skan#define	CHAR_BIT	8		/* number of bits in a char */
41169691Skan
42169691Skan/*
43169691Skan * According to ANSI (section 2.2.4.2), the values below must be usable by
44169691Skan * #if preprocessing directives.  Additionally, the expression must have the
45169691Skan * same type as would an expression that is an object of the corresponding
46169691Skan * type converted according to the integral promotions.  The subtraction for
47169691Skan * INT_MIN, etc., is so the value is not unsigned; e.g., 0x80000000 is an
48169691Skan * unsigned int for 32-bit two's complement ANSI compilers (section 3.1.3.2).
49169691Skan * These numbers are for the default configuration of gcc.  They work for
50169691Skan * some other compilers as well, but this should not be depended on.
51169691Skan */
52169691Skan#define	SCHAR_MAX	0x7f		/* max value for a signed char */
53169691Skan#define	SCHAR_MIN	(-0x7f - 1)	/* min value for a signed char */
54169691Skan
55169691Skan#define	UCHAR_MAX	0xff		/* max value for an unsigned char */
56169691Skan
57169691Skan#ifdef __CHAR_UNSIGNED__
58169691Skan#define	CHAR_MAX	UCHAR_MAX	/* max value for a char */
59169691Skan#define	CHAR_MIN	0		/* min value for a char */
60169691Skan#else
61169691Skan#define	CHAR_MAX	SCHAR_MAX	/* max value for a char */
62169691Skan#define	CHAR_MIN	SCHAR_MIN	/* min value for a char */
63169691Skan#endif
64169691Skan
65169691Skan#define	USHRT_MAX	0xffff		/* max value for an unsigned short */
66169691Skan#define	SHRT_MAX	0x7fff		/* max value for a short */
67169691Skan#define	SHRT_MIN	(-0x7fff - 1)	/* min value for a short */
68169691Skan
69169691Skan#define	UINT_MAX	0xffffffffU	/* max value for an unsigned int */
70169691Skan#define	INT_MAX		0x7fffffff	/* max value for an int */
71169691Skan#define	INT_MIN		(-0x7fffffff - 1)	/* min value for an int */
72169691Skan
73169691Skan/* Bad hack for gcc configured to give 64-bit longs. */
74169691Skan#ifdef _LARGE_LONG
75169691Skan#define	ULONG_MAX	0xffffffffffffffffUL
76169691Skan#define	LONG_MAX	0x7fffffffffffffffL
77169691Skan#define	LONG_MIN	(-0x7fffffffffffffffL - 1)
78169691Skan#else
79169691Skan#define	ULONG_MAX	0xffffffffUL	/* max value for an unsigned long */
80169691Skan#define	LONG_MAX	0x7fffffffL	/* max value for a long */
81169691Skan#define	LONG_MIN	(-0x7fffffffL - 1)	/* min value for a long */
82169691Skan#endif
83169691Skan
84169691Skan			/* max value for an unsigned long long */
85169691Skan#define	ULLONG_MAX	0xffffffffffffffffULL
86169691Skan#define	LLONG_MAX	0x7fffffffffffffffLL	/* max value for a long long */
87169691Skan#define	LLONG_MIN	(-0x7fffffffffffffffLL - 1)  /* min for a long long */
88169691Skan
89169691Skan#if !defined(_ANSI_SOURCE)
90169691Skan#define	SSIZE_MAX	INT_MAX		/* max value for a ssize_t */
91169691Skan
92169691Skan#if !defined(_POSIX_SOURCE)
93169691Skan#define	SIZE_T_MAX	UINT_MAX	/* max value for a size_t */
94169691Skan
95169691Skan#define	OFF_MAX		LLONG_MAX	/* max value for a off_t */
96169691Skan#define	OFF_MIN		LLONG_MIN	/* min value for a off_t */
97169691Skan
98169691Skan/* Quads and long longs are the same size.  Ensure they stay in sync. */
99169691Skan#define	UQUAD_MAX	ULLONG_MAX	/* max value for a uquad_t */
100169691Skan#define	QUAD_MAX	LLONG_MAX	/* max value for a quad_t */
101169691Skan#define	QUAD_MIN	LLONG_MIN	/* min value for a quad_t */
102169691Skan#endif /* !_POSIX_SOURCE */
103169691Skan#endif /* !_ANSI_SOURCE */
104169691Skan
105169691Skan#endif /* !_MACHINE_LIMITS_H_ */
106169691Skan