a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/rangeTree.c src/lib/rangeTree.c
index 622f78a..de519bb 100644
--- src/lib/rangeTree.c
+++ src/lib/rangeTree.c
@@ -2,31 +2,30 @@
  * 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 "obscure.h"
 #include "rbTree.h"
 #include "rangeTree.h"
 
-static char const rcsid[] = "$Id: rangeTree.c,v 1.24 2009/02/01 01:34:21 kent Exp $";
 
 int rangeCmp(void *va, void *vb)
 /* Return -1 if a before b,  0 if a and b overlap,
  * and 1 if a after b. */
 {
 struct range *a = va;
 struct range *b = vb;
 if (a->end <= b->start)
     return -1;
 else if (b->end <= a->start)
     return 1;
 else
     return 0;
 }