From 69a1aa93b81415a082dc4b5cecaad3d0dc0a97a6 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Tue, 16 Jul 2019 13:47:38 +0200 Subject: Basics of MAT exporting --- src/common.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/common.h (limited to 'src/common.h') diff --git a/src/common.h b/src/common.h new file mode 100644 index 0000000..7f1e41c --- /dev/null +++ b/src/common.h @@ -0,0 +1,9 @@ +#include +#include +#include +#include +#include +#include "eli.h" + +#define HASH_FOR(i, head, field) for ((i) = (head); (i); (i) = (i)->field.next) +#define errorf(fmt, ...) (fprintf(stderr, fmt, ##__VA_ARGS__)) -- cgit