7 lines
207 B
C
7 lines
207 B
C
{033700cadd75205410e46a6f57aa9d33f0ab1511 true 207 util.h 0xc001f91960}
/* See LICENSE file for copyright and license details. */
|
|
|
|
#define MAX(A, B) ((A) > (B) ? (A) : (B))
|
|
#define MIN(A, B) ((A) < (B) ? (A) : (B))
|
|
|
|
void die(const char *errstr, ...);
|