summaryrefslogtreecommitdiff
path: root/json-c/math_compat.h
diff options
context:
space:
mode:
Diffstat (limited to 'json-c/math_compat.h')
-rw-r--r--json-c/math_compat.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/json-c/math_compat.h b/json-c/math_compat.h
deleted file mode 100644
index f40b8fa..0000000
--- a/json-c/math_compat.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef __math_compat_h
-#define __math_compat_h
-
-/* Define isnan and isinf on Windows/MSVC */
-
-#ifndef HAVE_DECL_ISNAN
-# ifdef HAVE_DECL__ISNAN
-#include <float.h>
-#define isnan(x) _isnan(x)
-# endif
-#endif
-
-#ifndef HAVE_DECL_ISINF
-# ifdef HAVE_DECL__FINITE
-#include <float.h>
-#define isinf(x) (!_finite(x))
-# endif
-#endif
-
-#ifndef HAVE_DECL_NAN
-#error This platform does not have nan()
-#endif
-
-#ifndef HAVE_DECL_INFINITY
-#error This platform does not have INFINITY
-#endif
-
-#endif