blob: 033700cadd75205410e46a6f57aa9d33f0ab1511 (
plain) (
blame)
1
2
3
4
5
6
|
/* 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, ...);
|