a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/axt.c src/lib/axt.c
index e19f241..3272d63 100644
--- src/lib/axt.c
+++ src/lib/axt.c
@@ -8,31 +8,30 @@
  *
  * This file contains routines to read such alignments.
  * Note that though the coordinates are one based and
  * closed on disk, they get converted to our usual half
  * open zero based in memory. 
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 
 #include "common.h"
 #include "obscure.h"
 #include "linefile.h"
 #include "dnautil.h"
 #include "axt.h"
 
-static char const rcsid[] = "$Id: axt.c,v 1.52 2008/03/18 21:55:47 angie Exp $";
 
 void axtFree(struct axt **pEl)
 /* Free an axt. */
 {
 struct axt *el = *pEl;
 if (el != NULL)
     {
     freeMem(el->qName);
     freeMem(el->tName);
     freeMem(el->qSym);
     freeMem(el->tSym);
     freez(pEl);
     }
 }