aboutsummaryrefslogtreecommitdiff
path: root/client/global.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2017-04-07 23:58:20 +0200
committertomsmeding <tom.smeding@gmail.com>2017-04-07 23:58:20 +0200
commita75b3f7b47c074f2191a33c1f14ad4148754ed80 (patch)
treef719fbdcd92dfd09f8da8610c4e94090f64352b5 /client/global.h
parent4dcb97eec19bcb5365fb355a81e299545b97ef75 (diff)
Throw away the C client since it doesn't work
Diffstat (limited to 'client/global.h')
-rw-r--r--client/global.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/client/global.h b/client/global.h
deleted file mode 100644
index de0873b..0000000
--- a/client/global.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#pragma once
-
-#include <stdbool.h>
-#include <stdint.h>
-#include <inttypes.h>
-#include "memory.h"
-
-typedef int64_t i64;
-typedef uint64_t u64;
-
-void die(const char *format,...) __attribute__((noreturn, format(printf, 1, 2)));
-void die_perror(const char *func) __attribute__((noreturn));
-
-void debug(const char *format,...) __attribute__((format(printf, 1, 2)));