aboutsummaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-14 17:43:56 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-14 17:43:56 +0200
commite7fa504c3e095db65853afd39d2d1324d439dcf4 (patch)
tree54359cd50c69cc580a963eb53ffee8f43f214661 /util.c
parent5b44976a2d8bdd1397727663ce019374d6b2730a (diff)
removed a bunch of lines through swap removal
Diffstat (limited to 'util.c')
-rw-r--r--util.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/util.c b/util.c
index e95dfc5..eba8416 100644
--- a/util.c
+++ b/util.c
@@ -39,14 +39,6 @@ emallocz(unsigned int size)
}
void
-swap(void **p1, void **p2)
-{
- void *tmp = *p1;
- *p1 = *p2;
- *p2 = tmp;
-}
-
-void
spawn(Arg *arg)
{
char **argv = (char **)arg->argv;