4898794edd81be5285ea6e544acbedeaeb31bf78
max
  Tue Nov 23 08:10:57 2021 -0800
Fixing pointers to README file for license in all source code files. refs #27614

diff --git src/hg/lib/rangeTreeFile.c src/hg/lib/rangeTreeFile.c
index 36d0ff9..57b64d1 100644
--- src/hg/lib/rangeTreeFile.c
+++ src/hg/lib/rangeTreeFile.c
@@ -1,26 +1,26 @@
 /* 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. */
 
 /* Copyright (C) 2014 The Regents of the University of California 
- * See README in this or parent directory for licensing information. */
+ * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */
 
 #include "common.h"
 #include "limits.h"
 #include "localmem.h"
 #include "rangeTree.h"
 #include "rangeTreeFile.h"
 
 
 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;