diff options
author | ubq323 <ubq323@ubq323.website> | 2024-08-04 13:05:47 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-08-04 13:05:47 +0100 |
commit | 000e8ca43f4968412ed5c8fc514bb6caa3e5c450 (patch) | |
tree | e82eddb3cb54f75f8468e9a80a17e8b14857aa45 /util.h | |
parent | 1f257ac91ef3813c563203eacb5320b210fc1aa7 (diff) |
new reader
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2,6 +2,7 @@ #define _util_h #include <stdio.h> +#include <stdlib.h> #define CHECK(cond, ...) do { if (!(cond)) { fprintf(stderr, __VA_ARGS__); putchar('\n'); exit(1); } } while(0) #define ERROR(...) CHECK(false, __VA_ARGS__) |