implemented tagging a client

This commit is contained in:
Anselm R. Garbe
2006-07-13 17:09:35 +02:00
parent b72588746f
commit c47da143bd
5 changed files with 156 additions and 85 deletions

3
util.c
View File

@ -75,8 +75,9 @@ swap(void **p1, void **p2)
}
void
spawn(char *argv[])
spawn(Arg *arg)
{
char **argv = (char **)arg->argv;
if(!argv || !argv[0])
return;
if(fork() == 0) {