Xinqi Bao's Git
projects
/
dwm.git
/ blob
summary
|
log
|
commit
|
diff
|
tree
history
|
raw
|
HEAD
updated copyright notice in LICENSE file
[dwm.git]
/
util.h
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
6
void
die
(
const char
*
errstr
, ...);