aboutsummaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorFreeArtMan <freeartman@wechall.net>2014-06-29 19:14:44 +0300
committerFreeArtMan <freeartman@wechall.net>2014-06-29 19:14:44 +0300
commit3bea9f44076cc399ce34085a874fdd09aea004cb (patch)
tree15af5652df82d83f0513817a1702c4f95414874e /util.h
downloaddwm-fancy-3bea9f44076cc399ce34085a874fdd09aea004cb.tar.gz
dwm-fancy-3bea9f44076cc399ce34085a874fdd09aea004cb.zip
Initial commit
Diffstat (limited to 'util.h')
-rw-r--r--util.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/util.h b/util.h
new file mode 100644
index 0000000..c05f038
--- /dev/null
+++ b/util.h
@@ -0,0 +1,11 @@
+/* See LICENSE file for copyright and license details. */
+
+#ifndef MAX
+#define MAX(A, B) ((A) > (B) ? (A) : (B))
+#endif
+
+#ifndef MIN
+#define MIN(A, B) ((A) < (B) ? (A) : (B))
+#endif
+
+void die(const char *errstr, ...);