1
0
mirror of git://git.suckless.org/dwm synced 2025-05-18 22:10:25 -07:00
dwm/util.h

7 lines
207 B
C

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