about summary refs log tree commit diff
path: root/util.c
diff options
context:
space:
mode:
authorarg@10ksloc.org <unknown>2006-08-04 10:23:36 +0200
committerarg@10ksloc.org <unknown>2006-08-04 10:23:36 +0200
commit5077207088b08e6b21601cb19925d20e9d5af573 (patch)
tree053bd64a2dc6a33526dbb249d18697fedd74a1ab /util.c
parentinitial import (diff)
downloaddmenu-5077207088b08e6b21601cb19925d20e9d5af573.tar.gz
dmenu-5077207088b08e6b21601cb19925d20e9d5af573.tar.bz2
dmenu-5077207088b08e6b21601cb19925d20e9d5af573.zip
rearranged several stuff
Diffstat (limited to 'util.c')
-rw-r--r--util.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/util.c b/util.c
index dff7af7..1b9bc57 100644
--- a/util.c
+++ b/util.c
@@ -29,16 +29,6 @@ emalloc(unsigned int size)
 	return res;
 }
 
-void *
-emallocz(unsigned int size)
-{
-	void *res = calloc(1, size);
-
-	if(!res)
-		bad_malloc(size);
-	return res;
-}
-
 void
 eprint(const char *errstr, ...)
 {
@@ -58,11 +48,3 @@ estrdup(const char *str)
 		bad_malloc(strlen(str));
 	return res;
 }
-
-void
-swap(void **p1, void **p2)
-{
-	void *tmp = *p1;
-	*p1 = *p2;
-	*p2 = tmp;
-}