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/lib/intValTree.c src/lib/intValTree.c
index bc205c3..0dc2c72 100644
--- src/lib/intValTree.c
+++ src/lib/intValTree.c
@@ -1,20 +1,20 @@
 /* intValTree - a binary tree with integer keys and void values.  This is based on the 
  * red/black self-balancing binary tree algorithm in the rbTree module. */
 
 /* Copyright (C) 2008 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 "localmem.h"
 #include "rbTree.h"
 #include "intValTree.h"
 
 int intValCmp(void *va, void *vb)
 /* Return -1 if a before b,  0 if a and b overlap,
  * and 1 if a after b. */
 {
 struct intVal *a = va;
 struct intVal *b = vb;
 return a->key - b->key;
 }