From a8519434f058d0ab60bf7f90acc61997cb982cfa Mon Sep 17 00:00:00 2001 From: ubq323 Date: Wed, 26 Jun 2024 14:44:19 +0100 Subject: add cfunc type and rudimentary stdlib --- util.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'util.h') diff --git a/util.h b/util.h index b0f2658..7cbfa44 100644 --- a/util.h +++ b/util.h @@ -1,6 +1,8 @@ #ifndef _util_h #define _util_h +#include + #define CHECK(cond, ...) do { if (!(cond)) { fprintf(stderr, __VA_ARGS__); exit(1); } } while(0) #define ERROR(...) CHECK(false, __VA_ARGS__) -- cgit v1.2.3