summaryrefslogtreecommitdiff
path: root/src/headers/uint64-ulong64
diff options
context:
space:
mode:
Diffstat (limited to 'src/headers/uint64-ulong64')
-rw-r--r--src/headers/uint64-ulong6412
1 files changed, 12 insertions, 0 deletions
diff --git a/src/headers/uint64-ulong64 b/src/headers/uint64-ulong64
index 84ae235..f01c668 100644
--- a/src/headers/uint64-ulong64
+++ b/src/headers/uint64-ulong64
@@ -1,3 +1,15 @@
typedef unsigned long uint64_t ;
+typedef long int64_t ;
+#ifndef INT64_MIN
+# define INT64_MIN (-1-0x7fffffffffffffffl)
+#endif
+
+#ifndef INT64_MAX
+# define INT64_MAX 0x7fffffffffffffffl
+#endif
+
+#ifndef UINT64_MAX
+# define UINT64_MAX 0xfffffffffffffffful
+#endif