summaryrefslogtreecommitdiff
path: root/src/pr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pr.c')
-rw-r--r--src/pr.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/pr.c b/src/pr.c
index 9149f3f47..1e62c3bfd 100644
--- a/src/pr.c
+++ b/src/pr.c
@@ -2445,16 +2445,12 @@ print_header (void)
static int
read_line (COLUMN *p)
{
- register int c, chars;
+ int c;
+ int chars IF_LINT (= 0);
int last_input_position;
int j, k;
COLUMN *q;
-/* Suppress `used before initialized' warning. */
-#ifdef lint
- chars = 0;
-#endif
-
/* read 1st character in each line or any character succeeding a FF: */
c = getc (p->fp);