a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/utils/jkUniq/jkUniq.c src/utils/jkUniq/jkUniq.c
index 1a3d28f..3c1b178 100644
--- src/utils/jkUniq/jkUniq.c
+++ src/utils/jkUniq/jkUniq.c
@@ -1,22 +1,21 @@
 /* jkUniq - pass input to output a line at a time, but only
  * pass through lines haven't seen before. */
 #include "common.h"
 #include "hash.h"
 #include "linefile.h"
 
-static char const rcsid[] = "$Id: jkUniq.c,v 1.4 2009/10/16 22:17:04 markd Exp $";
 
 void usage()
 /* Explain usage and exit */
 {
 errAbort(
 "jkUniq - remove duplicate lines from file.  Lines need not\n"
 "be next to each other (plain Unix uniq works for that)\n"
 "\n"
 "WARNING: this overwrites the input files\n"
 "\n"
 "usage:\n"
 "    jkUniq file(s)");
 }
 
 void jkUniq(char *fileName)