Removing include/minix/limits.h

This files defines two constants which are only used through
sys/syslimits. So they where moved there instead of including the file
and it was removed.

Change-Id: Iba3d220144dddf5d6411a6c66e2f223a1aafb50f
This commit is contained in:
2013-04-08 16:54:49 +02:00
parent 78cbcc9750
commit dd6b239665
4 changed files with 7 additions and 15 deletions

View File

@@ -34,7 +34,11 @@
#ifndef _SYS_SYSLIMITS_H_
#define _SYS_SYSLIMITS_H_
#include <minix/limits.h>
#if defined(__minix)
#define __MINIX_OPEN_MAX 255 /* a process may have 255 files open */
#define __MINIX_PATH_MAX 1024/* a pathname may contain 1023 chars (+ '\0')*/
#endif /* defined(__minix) */
#include <sys/featuretest.h>
#if defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \