From e1a691b2b04b383f052d16931f5c34d6bc9d9e22 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Thu, 28 Dec 2017 13:51:51 +1300 Subject: Rough-work expr/op parser stubs in --- common.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 common.h (limited to 'common.h') 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 -- cgit v1.1