mirror of
https://git.suckless.org/dwm
synced 2024-12-27 03:16:32 +00:00
6 lines
207 B
C
6 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, ...);
|