From: Jim Meyering Date: Mon, 28 Mar 1994 14:22:52 +0000 (+0000) Subject: (prline): Remove unused function. X-Git-Tag: textutils-1_12_1~728 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de330273f1e0f99f8d40b67e922277c3fe95a3fc;p=platform%2Fupstream%2Fcoreutils.git (prline): Remove unused function. --- diff --git a/src/join.c b/src/join.c index d6a2639..f8da835 100644 --- a/src/join.c +++ b/src/join.c @@ -319,24 +319,6 @@ prfield (n, line) fputs (empty_filler, stdout); } -/* Print LINE, with its fields separated by `tab'. */ - -static void -prline (line) - struct line *line; -{ - int i; - - for (i = 0; i < line->nfields; ++i) - { - prfield (i, line); - if (i == line->nfields - 1) - putchar ('\n'); - else - putchar (tab ? tab : ' '); - } -} - /* Print the join of LINE1 and LINE2. */ static void