aboutsummarylogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorAnselm R. Garbe2006-07-10 22:16:48 +0200
committerAnselm R. Garbe2006-07-10 22:16:48 +0200
commit6bf639b0ecd5f02ab10210e9655af2390a4bfa35 (patch)
tree554743b9bd01054c5d5c45e066aa39ed1b951bf0 /util.h
parent5f2d9f630bf03ab2b58dbb4a21c91ed653e8b66f (diff)
downloadaur-6bf639b0ecd5f02ab10210e9655af2390a4bfa35.tar.gz
added several other stuff
Diffstat (limited to 'util.h')
-rw-r--r--util.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/util.h b/util.h
index 8ba444b0d845..cac3df032827 100644
--- a/util.h
+++ b/util.h
@@ -2,6 +2,7 @@
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
* See LICENSE file for license details.
*/
+#include <X11/Xlib.h>
extern void error(char *errstr, ...);
extern void *emallocz(unsigned int size);
@@ -12,5 +13,6 @@ extern char *estrdup(const char *str);
if(!(a)) \
failed_assert(#a, __FILE__, __LINE__); \
} while (0)
-void failed_assert(char *a, char *file, int line);
-void swap(void **p1, void **p2);
+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);