a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/rangeTreeFile.c src/hg/lib/rangeTreeFile.c
index 5b7c908..02b07d8 100644
--- src/hg/lib/rangeTreeFile.c
+++ src/hg/lib/rangeTreeFile.c
@@ -1,31 +1,30 @@
 /* rangeTree - This module is a way of keeping track of
  * non-overlapping ranges (half-open intervals). It is
  * based on the self-balancing rbTree code.  Use it in
  * place of a bitmap when the total number of ranges
  * is significantly smaller than the number of bits would
  * be. 
  * Beware the several static/global variables which can be
  * changed by various function calls. */
 
 #include "common.h"
 #include "limits.h"
 #include "localmem.h"
 #include "rangeTree.h"
 #include "rangeTreeFile.h"
 
-static char const rcsid[] = "$Id: rangeTreeFile.c,v 1.5 2008/09/17 19:45:00 mikep Exp $";
 
 struct range rangeReadOne(FILE *f, boolean isSwapped)
 /* Returns a single range from the file */
 {
 struct range r = {NULL, 0, 0, NULL};
 r.start = readBits32(f, isSwapped);
 r.end = r.start + readBits32(f, isSwapped);
 return r;
 }
 
 void rangeWriteOne(struct range *r, FILE *f)
 /* Write out one range structure to binary file f.
  * This only writes start and size. */
 {
 bits32 start = r->start;