dotfiles/dwm/util.h
Frank Villaro-Dixon 11405822d7 added dwm
2013-06-25 21:47:49 +02:00

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