dwm/util.h

7 lines
207 B
C
Raw Normal View History

/* 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, ...);