summaryrefslogtreecommitdiff
path: root/src/headers/uint64-noulong64
diff options
context:
space:
mode:
Diffstat (limited to 'src/headers/uint64-noulong64')
-rw-r--r--src/headers/uint64-noulong6412
1 files changed, 12 insertions, 0 deletions
diff --git a/src/headers/uint64-noulong64 b/src/headers/uint64-noulong64
index 1a67c1d..fe61dda 100644
--- a/src/headers/uint64-noulong64
+++ b/src/headers/uint64-noulong64
@@ -1,3 +1,15 @@
typedef unsigned long long uint64_t ;
+typedef signed long long int64_t ;
+#ifndef INT64_MIN
+# define INT64_MIN (-1-0x7fffffffffffffffll)
+#endif
+
+#ifndef INT64_MAX
+# define INT64_MAX 0x7fffffffffffffffll
+#endif
+
+#ifndef UINT64_MAX
+# define UINT64_MAX 0xffffffffffffffffull
+#endif