summaryrefslogtreecommitdiff
path: root/global.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2017-01-19 18:30:07 +0100
committertomsmeding <tom.smeding@gmail.com>2017-01-19 18:30:07 +0100
commitfcc0658730e541477fa60995d8bd82ff87163b92 (patch)
tree7e993fd0cbc54791d3e641badf8965d0d3a2952f /global.h
parent89f613475b8da3076aff70a6cef6b41df551d567 (diff)
Separate sock_/tcp_ like regexbattle
Diffstat (limited to 'global.h')
-rw-r--r--global.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/global.h b/global.h
new file mode 100644
index 0000000..61d8cee
--- /dev/null
+++ b/global.h
@@ -0,0 +1,10 @@
+#pragma once
+
+#include <stdint.h>
+#include <inttypes.h>
+
+typedef int64_t i64;
+typedef uint64_t u64;
+
+
+void throw(const char *format,...) __attribute__((noreturn, format (printf, 1, 2)));