diff options
author | Jim Meyering <jim@meyering.net> | 1994-03-28 14:22:52 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1994-03-28 14:22:52 +0000 |
commit | de330273f1e0f99f8d40b67e922277c3fe95a3fc (patch) | |
tree | 10f9de26bd16182c3496e76172bbc855fe233691 | |
parent | 2c2e51591154136bbab64fdc35ffe3eb834e4986 (diff) | |
download | coreutils-de330273f1e0f99f8d40b67e922277c3fe95a3fc.tar.xz |
(prline): Remove unused function.
-rw-r--r-- | src/join.c | 18 |
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 |