From: Jim Meyering Date: Sun, 22 Aug 1999 09:50:56 +0000 (+0000) Subject: (paste_parallel): Use IF_LINT macro instead of #ifdef lint... X-Git-Tag: FILEUTILS-4_0j-trial~313 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8b5ed0399d5f0feba0e9c2f832902d006541f07b;p=thirdparty%2Fcoreutils.git (paste_parallel): Use IF_LINT macro instead of #ifdef lint... --- diff --git a/src/paste.c b/src/paste.c index c77075f174..7dbf7091b5 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 *));