removed a bunch of lines through swap removal

This commit is contained in:
Anselm R. Garbe
2006-07-14 17:43:56 +02:00
parent 5b44976a2d
commit e7fa504c3e
5 changed files with 11 additions and 28 deletions

8
util.c
View File

@ -38,14 +38,6 @@ emallocz(unsigned int size)
return res;
}
void
swap(void **p1, void **p2)
{
void *tmp = *p1;
*p1 = *p2;
*p2 = tmp;
}
void
spawn(Arg *arg)
{