X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/1dd8eb505ef646b8489a08edd60309ee97248143..5f1f8f86e1cc6d51ba77aed65ae78612a1e9e5cb:/uip/comp.c diff --git a/uip/comp.c b/uip/comp.c index c8189d1d..111a2191 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); -}