a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/blastOut.c src/lib/blastOut.c
index cbc85e9..042a3f0 100644
--- src/lib/blastOut.c
+++ src/lib/blastOut.c
@@ -1,24 +1,23 @@
 /* blastOut.c - stuff to output an alignment in blast format. */
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "axt.h"
 #include "obscure.h"
 #include "genoFind.h"
 
-static char const rcsid[] = "$Id: blastOut.c,v 1.28 2009/02/26 00:05:49 markd Exp $";
 
 struct axtRef
 /* A reference to an axt. */
     {
     struct axtRef *next;
     struct axt *axt;
     };
 
 static int axtRefCmpScore(const void *va, const void *vb)
 /* Compare to sort based on score. */
 {
 const struct axtRef *a = *((struct axtRef **)va);
 const struct axtRef *b = *((struct axtRef **)vb);
 return b->axt->score - a->axt->score;
 }