summaryrefslogtreecommitdiff
path: root/util.h
blob: c05f038043017cb0373dc501ffe4dca67a8f2b70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/* See LICENSE file for copyright and license details. */

#ifndef MAX
#define MAX(A, B)               ((A) > (B) ? (A) : (B))
#endif

#ifndef MIN
#define MIN(A, B)               ((A) < (B) ? (A) : (B))
#endif

void die(const char *errstr, ...);