diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-19 16:54:46 +0100 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-11-19 16:54:46 +0100 |
commit | 8dae54e14774f11e590bdb69579108923045bc80 (patch) | |
tree | 890993692e3af4a76dbe5c65c4e694ff283b6c59 /system/include/libc | |
parent | dfad54341b3d50a70d1b5641ff3f690572aeee03 (diff) |
limits.h additions
Diffstat (limited to 'system/include/libc')
-rw-r--r-- | system/include/libc/limits.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/system/include/libc/limits.h b/system/include/libc/limits.h index 93362b88..3f1def0f 100644 --- a/system/include/libc/limits.h +++ b/system/include/libc/limits.h @@ -144,3 +144,12 @@ #define PATH_MAX 4096 #endif +/* XXX EMSCRIPTEN */ +#ifndef _LIBC_LIMITS2_H_ +#define _LIBC_LIMITS2_H_ 1 + +#define _POSIX_PATH_MAX PATH_MAX +#define PTHREAD_STACK_MIN 0 + +#endif + |