all repos — dwm @ cdec9782a1789bd5c3a84772fd59abb9da288597

fork of suckless dynamic window manager

util.h (view raw)

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