search for: _limits_h

Displaying 2 results from an estimated 2 matches for "_limits_h".

2011 Sep 06
0
[PATCH] include: [limits.h] define OPEN_MAX
...f-by: maximilian attems <max at stro.at> --- usr/include/limits.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/usr/include/limits.h b/usr/include/limits.h index 0d1069b..8a2c6c0 100644 --- a/usr/include/limits.h +++ b/usr/include/limits.h @@ -5,6 +5,8 @@ #ifndef _LIMITS_H #define _LIMITS_H +#define OPEN_MAX 20 + #define CHAR_BIT 8 #define SHRT_BIT 16 #define INT_BIT 32 -- 1.7.5.4
2011 Dec 04
0
[GIT PULL] klibc minor fixes
...Usage seen in util-linux. Defined according to POSIX:2001 min. Signed-off-by: maximilian attems <max at stro.at> diff --git a/usr/include/limits.h b/usr/include/limits.h index 0d1069b..8a2c6c0 100644 --- a/usr/include/limits.h +++ b/usr/include/limits.h @@ -5,6 +5,8 @@ #ifndef _LIMITS_H #define _LIMITS_H +#define OPEN_MAX 20 + #define CHAR_BIT 8 #define SHRT_BIT 16 #define INT_BIT 32 commit 6c82efff8561f0abdaea3054a7170f0aa4605fd6 Author: maximilian attems <max at stro.at> Date: Mon Sep 5 10:56:35 2011 +0200 [klibc] include: [sys/file.h] define flock(2)...