a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/splitFa/splitFa.c src/hg/splitFa/splitFa.c
index d95d496..d9109e7 100644
--- src/hg/splitFa/splitFa.c
+++ src/hg/splitFa/splitFa.c
@@ -1,22 +1,21 @@
 /* splitFa - split a big FA file into smaller ones. */
 
 #include "common.h"
 #include "dnaseq.h"
 #include "fa.h"
 
-static char const rcsid[] = "$Id: splitFa.c,v 1.2 2003/05/06 07:22:35 kate Exp $";
 
 void usage()
 /* Print usage instructions and exit. */
 {
 errAbort("splitFa - split a big FA file into smaller ones.\n"
 	 "usage:\n"
 	 "    splitFa source.fa maxSize destRoot\n"
 	 "This will split source into files of maxSize or smaller.\n"
 	 "The resulting files will be named destRoot01.fa destRoot02.fa\n"
 	 "and so forth.\n");
 }
 
 
 int main(int argc, char *argv[])
 {