diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-09-24 19:04:30 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-09-24 19:04:30 -0700 |
commit | dd0230c9cf09a7b19712a4acefe0ae27ea40ea85 (patch) | |
tree | d0f3969d8924338e1378b278f41f1d13202e6d0c | |
parent | f2a8bdc4c3bd88cb6a9ff85c4f2c43e9b9f77b97 (diff) |
fix limits.h
-rw-r--r-- | system/include/libc/limits.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/include/libc/limits.h b/system/include/libc/limits.h index 335cc053..93362b88 100644 --- a/system/include/libc/limits.h +++ b/system/include/libc/limits.h @@ -16,7 +16,7 @@ /* if do not have #include_next support, then we have to define the limits here. */ -# if !defined __GNUC__ || __GNUC__ < 2 +# if 1 /* XXX Emscripten: force this !defined __GNUC__ || __GNUC__ < 2 */ # ifndef _LIMITS_H # define _LIMITS_H 1 |