summaryrefslogtreecommitdiffhomepage
path: root/opentrack-compat/nan.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-07-19 07:08:03 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-07-19 07:38:37 +0200
commit0773f40c072bdf117fff9e7179849b65737e7491 (patch)
tree534d764580eb312ada0dea038a1632fac97c5e2a /opentrack-compat/nan.hpp
parent9296ed95961b846a13477581e2947b8be611b154 (diff)
move nan check to compat
Diffstat (limited to 'opentrack-compat/nan.hpp')
-rw-r--r--opentrack-compat/nan.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/opentrack-compat/nan.hpp b/opentrack-compat/nan.hpp
new file mode 100644
index 00000000..f9e5cc1e
--- /dev/null
+++ b/opentrack-compat/nan.hpp
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "export.hpp"
+
+#if defined(__GNUC__)
+extern "C" OPENTRACK_COMPAT_EXPORT bool __attribute__ ((noinline)) nanp(double value);
+#elif defined(_WIN32)
+extern "C" __declspec(noinline) OPENTRACK_COMPAT_EXPORT bool nanp(double value);
+#else
+extern "C" OPENTRACK_COMPAT_EXPORT bool nanp(double value);
+#endif