aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2011-06-17 16:59:38 +0000
committerlloyd <[email protected]>2011-06-17 16:59:38 +0000
commit6afb1f1db6debc4b86214155d281ce195ecf360c (patch)
treeb431586fe9a3d65cdcf06d0562485a66d5447ee8 /src
parentf799e57c35ff53136b0bbb7a40d44d7716db88a9 (diff)
long long is standard now
Diffstat (limited to 'src')
-rw-r--r--src/utils/types.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/utils/types.h b/src/utils/types.h
index 61a55368c..255311580 100644
--- a/src/utils/types.h
+++ b/src/utils/types.h
@@ -39,15 +39,7 @@ typedef signed int s32bit;
/**
* Typedef representing an unsigned 64-bit quantity
*/
-#if defined(_MSC_VER) || defined(__BORLANDC__)
- typedef unsigned __int64 u64bit;
-#elif defined(__KCC)
- typedef unsigned __long_long u64bit;
-#elif defined(__GNUG__)
- __extension__ typedef unsigned long long u64bit;
-#else
- typedef unsigned long long u64bit;
-#endif
+typedef unsigned long long u64bit;
/**
* A default buffer size; typically a memory page