summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/rts/Types.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/includes/rts/Types.h b/includes/rts/Types.h
index ff78402584..18a3ce00fe 100644
--- a/includes/rts/Types.h
+++ b/includes/rts/Types.h
@@ -16,13 +16,6 @@
typedef unsigned int nat; /* at least 32 bits (like int) */
typedef unsigned long lnat; /* at least 32 bits */
-#ifndef _MSC_VER
-typedef unsigned long long ullong; /* at least 32 bits */
-typedef long long llong;
-#else
-typedef unsigned __int64 ullong; /* at least 32 bits */
-typedef __int64 llong;
-#endif
/* ullong (64|128-bit) type: only include if needed (not ANSI) */
#if defined(__GNUC__)