
Headers that will be shared between old includes and NetBSD-like includes are moved into common/include tree. They are still copied in /usr/include in 'make includes', so compilation and programs aren't be affected.
13 lines
407 B
C
13 lines
407 B
C
/* The <minix/limits.h> header defines the Minix values for some MINIX
|
|
* constants. Both the MINIX constants and the non-posix constants
|
|
* refer to these underlying definitions.
|
|
*/
|
|
|
|
#ifndef _MINIX_LIMITS_H
|
|
#define _MINIX_LIMITS_H
|
|
|
|
#define __MINIX_OPEN_MAX 255 /* a process may have 255 files open */
|
|
#define __MINIX_PATH_MAX 255 /* a pathname may contain 255 chars */
|
|
|
|
#endif /* _MINIX_LIMITS_H */
|