1148330Snetchild/*-
2148330Snetchild * Copyright (c) 1988, 1993
3148330Snetchild *	The Regents of the University of California.  All rights reserved.
4148330Snetchild *
5148330Snetchild * Redistribution and use in source and binary forms, with or without
6148330Snetchild * modification, are permitted provided that the following conditions
7148330Snetchild * are met:
8148330Snetchild * 1. Redistributions of source code must retain the above copyright
9148330Snetchild *    notice, this list of conditions and the following disclaimer.
10148330Snetchild * 2. Redistributions in binary form must reproduce the above copyright
11148330Snetchild *    notice, this list of conditions and the following disclaimer in the
12148330Snetchild *    documentation and/or other materials provided with the distribution.
13148330Snetchild * 4. Neither the name of the University nor the names of its contributors
14148543Snetchild *    may be used to endorse or promote products derived from this software
15148543Snetchild *    without specific prior written permission.
16148330Snetchild *
17195767Skensmith * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18195767Skensmith * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19195767Skensmith * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20195767Skensmith * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21195767Skensmith * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22195767Skensmith * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23195767Skensmith * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24195767Skensmith * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25195767Skensmith * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26195767Skensmith * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27195767Skensmith * SUCH DAMAGE.
28195767Skensmith *
29195767Skensmith *	@(#)limits.h	8.3 (Berkeley) 1/4/94
30195767Skensmith * $FreeBSD$
31195767Skensmith */
32195767Skensmith
33195767Skensmith#ifndef _MACHINE_LIMITS_H_
34195767Skensmith#define	_MACHINE_LIMITS_H_
35195767Skensmith
36195767Skensmith#include <sys/cdefs.h>
37195767Skensmith
38195767Skensmith#ifdef __CC_SUPPORTS_WARNING
39195767Skensmith#warning "machine/limits.h is deprecated.  Include sys/limits.h instead."
40195767Skensmith#endif
41195767Skensmith
42195767Skensmith#include <sys/limits.h>
43195767Skensmith
44195767Skensmith#endif /* !_MACHINE_LIMITS_H_ */
45195767Skensmith