summaryrefslogtreecommitdiff
path: root/lua_cjson.c
diff options
context:
space:
mode:
Diffstat (limited to 'lua_cjson.c')
-rw-r--r--lua_cjson.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua_cjson.c b/lua_cjson.c
index 151fa39..ad3818d 100644
--- a/lua_cjson.c
+++ b/lua_cjson.c
@@ -66,8 +66,8 @@
66#define LOCALE_RESTORE(x) do { } while(0) 66#define LOCALE_RESTORE(x) do { } while(0)
67#endif 67#endif
68 68
69#ifdef MISSING_ISINF 69/* Some Solaris platforms are missing isinf(). */
70/* Some Solaris platforms are missing isinf(). Define here. */ 70#if defined(USE_INTERNAL_ISINF) || defined(MISSING_ISINF)
71#define isinf(x) (!isnan(x) && isnan((x) - (x))) 71#define isinf(x) (!isnan(x) && isnan((x) - (x)))
72#endif 72#endif
73 73