util.h 207 B

123456
  1. /* See LICENSE file for copyright and license details. */
  2. #define MAX(A, B) ((A) > (B) ? (A) : (B))
  3. #define MIN(A, B) ((A) < (B) ? (A) : (B))
  4. void die(const char *errstr, ...);