(paste_parallel): Use IF_LINT macro instead of #ifdef lint...
authorJim Meyering <jim@meyering.net>
Sun, 22 Aug 1999 09:50:56 +0000 (09:50 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 22 Aug 1999 09:50:56 +0000 (09:50 +0000)
src/paste.c

index c77075f174bf2a851d7595313218d6fdd8aa653b..7dbf7091b5516ac2ccb6bc1bb25ffc0e0aaa91c4 100644 (file)
@@ -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 *));