xref: /csrg-svn/include/limits.h (revision 61068)
136798Sbostic /*
2*61068Sbostic  * Copyright (c) 1988, 1993
3*61068Sbostic  *	The Regents of the University of California.  All rights reserved.
436798Sbostic  *
542611Sbostic  * %sccs.include.redist.c%
636798Sbostic  *
7*61068Sbostic  *	@(#)limits.h	8.1 (Berkeley) 06/02/93
836798Sbostic  */
936798Sbostic 
1047770Sbostic #ifndef _LIMITS_H_
1147770Sbostic #define	_LIMITS_H_
1247770Sbostic 
1336804Sbostic #define	_POSIX_ARG_MAX		4096
1436804Sbostic #define	_POSIX_CHILD_MAX	6
1536804Sbostic #define	_POSIX_LINK_MAX		8
1636804Sbostic #define	_POSIX_MAX_CANON	255
1736804Sbostic #define	_POSIX_MAX_INPUT	255
1836804Sbostic #define	_POSIX_NAME_MAX		14
1936804Sbostic #define	_POSIX_NGROUPS_MAX	0
2036804Sbostic #define	_POSIX_OPEN_MAX		16
2136804Sbostic #define	_POSIX_PATH_MAX		255
2236804Sbostic #define	_POSIX_PIPE_BUF		512
2336804Sbostic 
2445456Sbostic #define	_POSIX2_BC_BASE_MAX	99
2545456Sbostic #define	_POSIX2_BC_DIM_MAX	2048
2645456Sbostic #define	_POSIX2_BC_SCALE_MAX	99
2745456Sbostic #define	_POSIX2_BC_STRING_MAX	1000
2845456Sbostic #define	_POSIX2_EQUIV_CLASS_MAX	2
2945456Sbostic #define	_POSIX2_EXPR_NEST_MAX	32
3045456Sbostic #define	_POSIX2_LINE_MAX	2048
3145456Sbostic #define	_POSIX2_RE_DUP_MAX	255
3245456Sbostic 
3345678Sbostic #include <machine/limits.h>
3436803Sbostic #include <sys/syslimits.h>
3547770Sbostic 
3647770Sbostic #endif /* !_LIMITS_H_ */
37