a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/utils/catUncomment/catUncomment.c src/utils/catUncomment/catUncomment.c
index ff6732e..54a852b 100644
--- src/utils/catUncomment/catUncomment.c
+++ src/utils/catUncomment/catUncomment.c
@@ -1,45 +1,44 @@
 /* catUncomment - Concatenate input removing lines that start with '#'. */
 #include "common.h"
 #include "linefile.h"
 
-static char const rcsid[] = "$Id: catUncomment.c,v 1.2 2003/05/06 07:41:04 kate Exp $";
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "catUncomment - Concatenate input removing lines that start with '#'\n"
   "Output goes to stdout\n"
   "usage:\n"
   "   catUncomment file(s)\n");
 }
 
 void catUncomment(int inCount, char *inNames[])
 /* catUncomment - Concatenate input removing lines that start with '#'. */
 {
 struct lineFile *lf;
 char *fileName;
 char *line;
 int i, lineSize;
 
 for (i=0; i<inCount; ++i)
     {
     fileName =  inNames[i];
     lf = lineFileOpen(fileName, FALSE);
     while (lineFileNext(lf, &line, &lineSize))
         {
 	if (line[0] != '#')
 	    mustWrite(stdout, line, lineSize);
 	}
     lineFileClose(&lf);
     }
 }
 
 int main(int argc, char *argv[])
 /* Process command line. */
 {
 if (argc < 2)
     usage();
 catUncomment(argc-1, argv+1);
 return 0;
 }