summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'types.h')
-rw-r--r--types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/types.h b/types.h
index 96f474f..903e76a 100644
--- a/types.h
+++ b/types.h
@@ -28,7 +28,7 @@ For more information, please refer to <http://unlicense.org/>
typedef long double Floating; /* OPTIM: Switch to double, but make sure floating-point literals are right */
-#if __STDC_VERSION__ >= 199901
+#if __STDC_VERSION__ >= 199901 || defined _MSC_VER
#define LONGLONG_AVAILABLE 1
typedef long long longlong;
#else