summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/join.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/join.c b/src/join.c
index d6a2639a9..f8da83576 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