xref: /freebsd/sys/amd64/include/limits.h (revision 104a9b7e3edbd88cdda0698c5c77a2ad6dafcc16)
1ea9ea04cSDavid E. O'Brien /*
2ea9ea04cSDavid E. O'Brien  * Copyright (c) 1988, 1993
3ea9ea04cSDavid E. O'Brien  *	The Regents of the University of California.  All rights reserved.
4ea9ea04cSDavid E. O'Brien  *
5ea9ea04cSDavid E. O'Brien  * Redistribution and use in source and binary forms, with or without
6ea9ea04cSDavid E. O'Brien  * modification, are permitted provided that the following conditions
7ea9ea04cSDavid E. O'Brien  * are met:
8ea9ea04cSDavid E. O'Brien  * 1. Redistributions of source code must retain the above copyright
9ea9ea04cSDavid E. O'Brien  *    notice, this list of conditions and the following disclaimer.
10ea9ea04cSDavid E. O'Brien  * 2. Redistributions in binary form must reproduce the above copyright
11ea9ea04cSDavid E. O'Brien  *    notice, this list of conditions and the following disclaimer in the
12ea9ea04cSDavid E. O'Brien  *    documentation and/or other materials provided with the distribution.
13ea9ea04cSDavid E. O'Brien  * 3. All advertising materials mentioning features or use of this software
14ea9ea04cSDavid E. O'Brien  *    must display the following acknowledgement:
15ea9ea04cSDavid E. O'Brien  *	This product includes software developed by the University of
16ea9ea04cSDavid E. O'Brien  *	California, Berkeley and its contributors.
17ea9ea04cSDavid E. O'Brien  * 4. Neither the name of the University nor the names of its contributors
18ea9ea04cSDavid E. O'Brien  *    may be used to endorse or promote products derived from this software
19ea9ea04cSDavid E. O'Brien  *    without specific prior written permission.
20ea9ea04cSDavid E. O'Brien  *
21ea9ea04cSDavid E. O'Brien  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22ea9ea04cSDavid E. O'Brien  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23ea9ea04cSDavid E. O'Brien  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24ea9ea04cSDavid E. O'Brien  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25ea9ea04cSDavid E. O'Brien  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26ea9ea04cSDavid E. O'Brien  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27ea9ea04cSDavid E. O'Brien  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28ea9ea04cSDavid E. O'Brien  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29ea9ea04cSDavid E. O'Brien  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30ea9ea04cSDavid E. O'Brien  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31ea9ea04cSDavid E. O'Brien  * SUCH DAMAGE.
32ea9ea04cSDavid E. O'Brien  *
33ea9ea04cSDavid E. O'Brien  *	@(#)limits.h	8.3 (Berkeley) 1/4/94
34ea9ea04cSDavid E. O'Brien  *	From: NetBSD: limits.h,v 1.3 1997/04/06 08:47:31 cgd Exp
35ea9ea04cSDavid E. O'Brien  * 	From: FreeBSD: src/sys/alpha/include/limits.h,v 1.8 2001/11/02
36ea9ea04cSDavid E. O'Brien  * $FreeBSD$
37ea9ea04cSDavid E. O'Brien  */
38ea9ea04cSDavid E. O'Brien 
39ea9ea04cSDavid E. O'Brien #ifndef	_MACHINE_LIMITS_H_
40ea9ea04cSDavid E. O'Brien #define	_MACHINE_LIMITS_H_
41ea9ea04cSDavid E. O'Brien 
42104a9b7eSAlexander Kabaev #if __GNUC__
43104a9b7eSAlexander Kabaev #warning "machine/limits.h is deprecated.  Include sys/limits.h instead."
44ea9ea04cSDavid E. O'Brien #endif
45ea9ea04cSDavid E. O'Brien 
46104a9b7eSAlexander Kabaev #include <sys/limits.h>
47104a9b7eSAlexander Kabaev 
48ea9ea04cSDavid E. O'Brien #endif /* !_MACHINE_LIMITS_H_ */
49