_limits.h revision 115164
199129Sobrien/*
299129Sobrien * Copyright (c) 1988, 1993
399129Sobrien *	The Regents of the University of California.  All rights reserved.
499129Sobrien *
599129Sobrien * Redistribution and use in source and binary forms, with or without
699129Sobrien * modification, are permitted provided that the following conditions
799129Sobrien * are met:
899129Sobrien * 1. Redistributions of source code must retain the above copyright
999129Sobrien *    notice, this list of conditions and the following disclaimer.
1099129Sobrien * 2. Redistributions in binary form must reproduce the above copyright
1199129Sobrien *    notice, this list of conditions and the following disclaimer in the
1299129Sobrien *    documentation and/or other materials provided with the distribution.
1399129Sobrien * 3. All advertising materials mentioning features or use of this software
1499129Sobrien *    must display the following acknowledgement:
1599129Sobrien *	This product includes software developed by the University of
1699129Sobrien *	California, Berkeley and its contributors.
1799129Sobrien * 4. Neither the name of the University nor the names of its contributors
1899129Sobrien *    may be used to endorse or promote products derived from this software
1999129Sobrien *    without specific prior written permission.
2099129Sobrien *
2199129Sobrien * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2299129Sobrien * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2399129Sobrien * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2499129Sobrien * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2599129Sobrien * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2699129Sobrien * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2799129Sobrien * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2899129Sobrien * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2999129Sobrien * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3099129Sobrien * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3199129Sobrien * SUCH DAMAGE.
3299129Sobrien *
3399129Sobrien *	@(#)limits.h	8.3 (Berkeley) 1/4/94
3499129Sobrien *	From: NetBSD: limits.h,v 1.3 1997/04/06 08:47:31 cgd Exp
3599129Sobrien * 	From: FreeBSD: src/sys/alpha/include/limits.h,v 1.8 2001/11/02
3699129Sobrien * $FreeBSD: head/sys/amd64/include/_limits.h 115164 2003-05-19 20:29:07Z kan $
3799129Sobrien */
3899129Sobrien
39113941Skan#ifndef	_MACHINE__LIMITS_H_
40113941Skan#define	_MACHINE__LIMITS_H_
4199129Sobrien
42114678Skan/*
43114678Skan * According to ANSI (section 2.2.4.2), the values below must be usable by
44114678Skan * #if preprocessing directives.  Additionally, the expression must have the
45114678Skan * same type as would an expression that is an object of the corresponding
46114678Skan * type converted according to the integral promotions.  The subtraction for
47114678Skan * INT_MIN, etc., is so the value is not unsigned; e.g., 0x80000000 is an
48114678Skan * unsigned int for 32-bit two's complement ANSI compilers (section 3.1.3.2).
49114678Skan * These numbers are for the default configuration of gcc.  They work for
50114678Skan * some other compilers as well, but this should not be depended on.
51114678Skan */
52114678Skan
53115164Skan#define	__CHAR_BIT	8		/* number of bits in a char */
54115164Skan
55113941Skan#define	__SCHAR_MAX	0x7f		/* max value for a signed char */
56113941Skan#define	__SCHAR_MIN	(-0x7f-1)	/* min value for a signed char */
5799129Sobrien
58113941Skan#define	__UCHAR_MAX	0xffU		/* max value for an unsigned char */
5999129Sobrien
60113941Skan#define	__USHRT_MAX	0xffffU		/* max value for an unsigned short */
61113941Skan#define	__SHRT_MAX	0x7fff		/* max value for a short */
62113941Skan#define	__SHRT_MIN	(-0x7fff-1)	/* min value for a short */
6399129Sobrien
64113941Skan#define	__UINT_MAX	0xffffffffU	/* max value for an unsigned int */
65113941Skan#define	__INT_MAX	0x7fffffff	/* max value for an int */
66113941Skan#define	__INT_MIN	(-0x7fffffff-1)	/* min value for an int */
6799129Sobrien
68113941Skan#define	__ULONG_MAX	0xffffffffffffffffUL	/* max for an unsigned long */
69113941Skan#define	__LONG_MAX	0x7fffffffffffffffL	/* max for a long */
70113941Skan#define	__LONG_MIN	(-0x7fffffffffffffffL-1) /* min for a long */
7199129Sobrien
7299129Sobrien/* Long longs and longs are the same size on the alpha. */
7399129Sobrien					/* max for an unsigned long long */
74113941Skan#define	__ULLONG_MAX	0xffffffffffffffffULL
75113941Skan#define	__LLONG_MAX	0x7fffffffffffffffLL	/* max for a long long */
76113941Skan#define	__LLONG_MIN	(-0x7fffffffffffffffLL-1) /* min for a long long */
7799129Sobrien
78113941Skan#define	__SSIZE_MAX	__LONG_MAX	/* max value for a ssize_t */
7999129Sobrien
80113941Skan#define	__SIZE_T_MAX	__ULONG_MAX	/* max value for a size_t */
8199129Sobrien
82113941Skan#define	__OFF_MAX	__LONG_MAX	/* max value for an off_t */
83113941Skan#define	__OFF_MIN	__LONG_MIN	/* min value for an off_t */
8499129Sobrien
85113941Skan/* Quads and longs are the same on the amd64.  Ensure they stay in sync. */
86113941Skan#define	__UQUAD_MAX	(__ULONG_MAX)	/* max value for a uquad_t */
87113941Skan#define	__QUAD_MAX	(__LONG_MAX)	/* max value for a quad_t */
88113941Skan#define	__QUAD_MIN	(__LONG_MIN)	/* min value for a quad_t */
8999129Sobrien
90113941Skan#define	__LONG_BIT	64
91113941Skan#define	__WORD_BIT	32
9299129Sobrien
93113941Skan#endif /* !_MACHINE__LIMITS_H_ */
94