X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/439e15d09f6fa9271d3b49ef97194f0c80ebe161..35db6d8afc3fd9f80166feac6c1e4adf71d553c3:/util.h?ds=sidebyside

diff --git a/util.h b/util.h
index cac3df0..033700c 100644
--- a/util.h
+++ b/util.h
@@ -1,18 +1,6 @@
-/*
- * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
- * See LICENSE file for license details.
- */
-#include <X11/Xlib.h>
+/* See LICENSE file for copyright and license details. */
 
-extern void error(char *errstr, ...);
-extern void *emallocz(unsigned int size);
-extern void *emalloc(unsigned int size);
-extern void *erealloc(void *ptr, unsigned int size);
-extern char *estrdup(const char *str);
-#define eassert(a) do { \
-		if(!(a)) \
-			failed_assert(#a, __FILE__, __LINE__); \
-	} while (0)
-extern void failed_assert(char *a, char *file, int line);
-extern void swap(void **p1, void **p2);
-extern void spawn(Display *dpy, const char *shell, const char *cmd);
+#define MAX(A, B)               ((A) > (B) ? (A) : (B))
+#define MIN(A, B)               ((A) < (B) ? (A) : (B))
+
+void die(const char *errstr, ...);