dwm-meillo
diff util.h @ 5:e5018cae273f
added several other stuff
author | Anselm R. Garbe <garbeam@wmii.de> |
---|---|
date | Mon, 10 Jul 2006 22:16:48 +0200 |
parents | e969f3575b7a |
children | e0cefb3981c8 |
line diff
1.1 --- a/util.h Mon Jul 10 19:47:35 2006 +0200 1.2 +++ b/util.h Mon Jul 10 22:16:48 2006 +0200 1.3 @@ -2,6 +2,7 @@ 1.4 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> 1.5 * See LICENSE file for license details. 1.6 */ 1.7 +#include <X11/Xlib.h> 1.8 1.9 extern void error(char *errstr, ...); 1.10 extern void *emallocz(unsigned int size); 1.11 @@ -12,5 +13,6 @@ 1.12 if(!(a)) \ 1.13 failed_assert(#a, __FILE__, __LINE__); \ 1.14 } while (0) 1.15 -void failed_assert(char *a, char *file, int line); 1.16 -void swap(void **p1, void **p2); 1.17 +extern void failed_assert(char *a, char *file, int line); 1.18 +extern void swap(void **p1, void **p2); 1.19 +extern void spawn(Display *dpy, const char *shell, const char *cmd);