summaryrefslogtreecommitdiff
path: root/common.h
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2017-12-28 13:51:51 +1300
committerDavid Phillips <david@sighup.nz>2017-12-28 13:51:51 +1300
commite1a691b2b04b383f052d16931f5c34d6bc9d9e22 (patch)
treef3a3d4a5c7274e0b62f5bca4f30541010d01d839 /common.h
parentf23abfdde683aee4b808f2795af1a1418125156c (diff)
downloadhence-e1a691b2b04b383f052d16931f5c34d6bc9d9e22.tar.xz
Rough-work expr/op parser stubs in
Diffstat (limited to 'common.h')
-rw-r--r--common.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/common.h b/common.h
new file mode 100644
index 0000000..e5c0ab4
--- /dev/null
+++ b/common.h
@@ -0,0 +1,6 @@
+#ifndef COMMON_H
+#define COMMON_H
+
+#define MIN(a, b) (((a) < (b)) ? (a) : (b))
+
+#endif