From e11d70c3620893debce74f7ad3435a1a96f60af5 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 22 Aug 1999 09:50:31 +0000 Subject: [PATCH] (read_line): Use IF_LINT macro instead of #ifdef lint... --- src/pr.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/pr.c b/src/pr.c index 9149f3f47b..1e62c3bfd3 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); -- 2.47.3