summaryrefslogtreecommitdiff
path: root/base.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-12-26 20:36:48 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2020-12-26 20:37:09 -0500
commitec020b646a34380793ef3b2ec66fe469f48c99a4 (patch)
tree0c61706a6dbc68fc680af5b7e76835ceb0c9438a /base.h
parentc5a3c1bfdd8fe0fe81a8094ab68b7a95bdb4ea39 (diff)
Added buffer header (with checksum in debug mode)
Diffstat (limited to 'base.h')
-rw-r--r--base.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/base.h b/base.h
index b4a9b00..c9306a3 100644
--- a/base.h
+++ b/base.h
@@ -48,6 +48,9 @@ typedef int64_t i64;
typedef unsigned int uint;
typedef unsigned long ulong;
+typedef long long llong;
+typedef unsigned long long ullong;
+
#ifdef __GNUC__
#define WarnUnusedResult __attribute__((warn_unused_result))
#else