all repos — dwm @ 35db6d8afc3fd9f80166feac6c1e4adf71d553c3

my dwm build

util.h

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