blob: e4c47f01b083aa03bc1c77bc11b83b2a11dcc2f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _util_h
#define _util_h
#include <stdio.h>
#include <stdlib.h>
#define CHECK(cond, ...) do { if (!(cond)) { fflush(stdout); fprintf(stderr, __VA_ARGS__); putchar('\n'); exit(1); } } while(0)
#define ERROR(...) CHECK(false, __VA_ARGS__)
#endif
|