_limits.h revision 113941
14Srgrimes/*
21549Srgrimes * Copyright (c) 1988, 1993
31549Srgrimes *	The Regents of the University of California.  All rights reserved.
44Srgrimes *
54Srgrimes * Redistribution and use in source and binary forms, with or without
64Srgrimes * modification, are permitted provided that the following conditions
74Srgrimes * are met:
84Srgrimes * 1. Redistributions of source code must retain the above copyright
94Srgrimes *    notice, this list of conditions and the following disclaimer.
104Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
114Srgrimes *    notice, this list of conditions and the following disclaimer in the
124Srgrimes *    documentation and/or other materials provided with the distribution.
134Srgrimes * 3. All advertising materials mentioning features or use of this software
144Srgrimes *    must display the following acknowledgement:
154Srgrimes *	This product includes software developed by the University of
164Srgrimes *	California, Berkeley and its contributors.
174Srgrimes * 4. Neither the name of the University nor the names of its contributors
184Srgrimes *    may be used to endorse or promote products derived from this software
194Srgrimes *    without specific prior written permission.
204Srgrimes *
214Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
224Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
234Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
244Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
254Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
264Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
274Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
284Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
294Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
304Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
314Srgrimes * SUCH DAMAGE.
324Srgrimes *
331549Srgrimes *	@(#)limits.h	8.3 (Berkeley) 1/4/94
3450477Speter * $FreeBSD: head/sys/i386/include/_limits.h 113941 2003-04-23 21:41:59Z kan $
354Srgrimes */
364Srgrimes
37113941Skan#ifndef _MACHINE__LIMITS_H_
38113941Skan#define	_MACHINE__LIMITS_H_
39719Swollman
40113941Skan#define	__CHAR_BIT	8		/* number of bits in a char */
414Srgrimes
42113941Skan#define	__SCHAR_MAX	0x7f		/* max value for a signed char */
43113941Skan#define	__SCHAR_MIN	(-0x7f - 1)	/* min value for a signed char */
444Srgrimes
45113941Skan#define	__UCHAR_MAX	0xff		/* max value for an unsigned char */
461549Srgrimes
47113941Skan#define	__USHRT_MAX	0xffff		/* max value for an unsigned short */
48113941Skan#define	__SHRT_MAX	0x7fff		/* max value for a short */
49113941Skan#define	__SHRT_MIN	(-0x7fff - 1)	/* min value for a short */
5047347Sache
51113941Skan#define	__UINT_MAX	0xffffffffU	/* max value for an unsigned int */
52113941Skan#define	__INT_MAX	0x7fffffff	/* max value for an int */
53113941Skan#define	__INT_MIN	(-0x7fffffff - 1)	/* min value for an int */
541549Srgrimes
5567487Sobrien/* Bad hack for gcc configured to give 64-bit longs. */
5667487Sobrien#ifdef _LARGE_LONG
57113941Skan#define	__ULONG_MAX	0xffffffffffffffffUL
58113941Skan#define	__LONG_MAX	0x7fffffffffffffffL
59113941Skan#define	__LONG_MIN	(-0x7fffffffffffffffL - 1)
6067487Sobrien#else
61113941Skan#define	__ULONG_MAX	0xffffffffUL	/* max value for an unsigned long */
62113941Skan#define	__LONG_MAX	0x7fffffffL	/* max value for a long */
63113941Skan#define	__LONG_MIN	(-0x7fffffffL - 1)	/* min value for a long */
6467487Sobrien#endif
65880Salm
6667487Sobrien			/* max value for an unsigned long long */
67113941Skan#define	__ULLONG_MAX	0xffffffffffffffffULL
68113941Skan#define	__LLONG_MAX	0x7fffffffffffffffLL	/* max value for a long long */
69113941Skan#define	__LLONG_MIN	(-0x7fffffffffffffffLL - 1)  /* min for a long long */
7067487Sobrien
71113941Skan#define	__SSIZE_MAX	__INT_MAX	/* max value for a ssize_t */
72880Salm
73113941Skan#define	__SIZE_T_MAX	__UINT_MAX	/* max value for a size_t */
741549Srgrimes
75113941Skan#define	__OFF_MAX	__LLONG_MAX	/* max value for an off_t */
76113941Skan#define	__OFF_MIN	__LLONG_MIN	/* min value for an off_t */
7781718Sache
7867487Sobrien/* Quads and long longs are the same size.  Ensure they stay in sync. */
79113941Skan#define	__UQUAD_MAX	__ULLONG_MAX	/* max value for a uquad_t */
80113941Skan#define	__QUAD_MAX	__LLONG_MAX	/* max value for a quad_t */
81113941Skan#define	__QUAD_MIN	__LLONG_MIN	/* min value for a quad_t */
821549Srgrimes
83113941Skan#ifdef _LARGE_LONG
84113941Skan#define	__LONG_BIT	64
85113941Skan#else
86113941Skan#define	__LONG_BIT	32
87113941Skan#endif
88113941Skan#define	__WORD_BIT	32
89113941Skan
90113941Skan#define	__DBL_DIG	15
91113941Skan#define	__DBL_MAX	1.7976931348623157E+308
92113941Skan#define	__DBL_MIN	2.2250738585072014E-308
93113941Skan
94113941Skan#define	__FLT_DIG	6
95113941Skan#define	__FLT_MAX	3.40282347E+38F
96113941Skan#define	__FLT_MIN	1.17549435E-38F
97113941Skan
98113941Skan#endif /* !_MACHINE__LIMITS_H_ */
99