From 8b5ed0399d5f0feba0e9c2f832902d006541f07b Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 22 Aug 1999 09:50:56 +0000 Subject: (paste_parallel): Use IF_LINT macro instead of #ifdef lint... --- src/paste.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/paste.c b/src/paste.c index c77075f17..7dbf7091b 100644 --- a/src/paste.c +++ b/src/paste.c @@ -158,7 +158,7 @@ paste_parallel (int nfiles, char **fnamptr) /* Number of files for which space is allocated in `delbuf' and `fileptr'. Enlarged as necessary. */ int file_list_size = 12; - int chr; /* Input character. */ + int chr IF_LINT (= 0); /* Input character. */ int line_length; /* Number of chars in line. */ int somedone; /* 0 if all files empty for this line. */ /* If all files are just ready to be closed, or will be on this @@ -173,10 +173,6 @@ paste_parallel (int nfiles, char **fnamptr) int i; /* Loop index. */ int opened_stdin = 0; /* Nonzero if any fopen got fd 0. */ -#ifdef lint /* Suppress `used before initialized' warning. */ - chr = 0; -#endif - delbuf = (char *) xmalloc (file_list_size + 2); fileptr = (FILE **) xmalloc ((file_list_size + 1) * sizeof (FILE *)); -- cgit v1.2.3-70-g09d2