X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fcomp.c;h=111a219177ffd19aa4048eb68e1eaeb1df943e54;hb=2d1f77125ffb16daf661a40710bb0fb48343d1f9;hp=c8189d1d89defb8a5f61e3f64a9fb54beba7375f;hpb=98e2ac4aa016aecbca7e9b8e8bcb8ecfa7bba1b5;p=mmh diff --git a/uip/comp.c b/uip/comp.c index c8189d1..111a219 100644 --- a/uip/comp.c +++ b/uip/comp.c @@ -79,12 +79,6 @@ static struct swit aqrul[] = { { NULL, 0 } }; -/* - * Add an item to a comma seperated list - */ - -static char *addlist(char *, char *); - int main (int argc, char **argv) { @@ -416,16 +410,3 @@ edit_it: done (1); return 1; } - -/* - * Append an item to a comma separated list - */ - -static char * -addlist (char *list, char *item) -{ - if (list) - list = add (", ", list); - - return add (item, list); -}