From de330273f1e0f99f8d40b67e922277c3fe95a3fc Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 28 Mar 1994 14:22:52 +0000 Subject: [PATCH] (prline): Remove unused function. --- src/join.c | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/join.c b/src/join.c index d6a2639a94..f8da835761 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 -- 2.47.3