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/longToList.c src/lib/longToList.c
index 448fc23..300c8c4 100644
--- src/lib/longToList.c
+++ src/lib/longToList.c
@@ -1,25 +1,25 @@
 /* longToList - this is a way of associating a generic list with a long key.
  * You can retrieve back the list given the key,  and add to lists associated with
  * any given tree. The list can be any sort of singly-linked object that starts with
  * a next field. 
  *
  * Under the hood this uses a balanced binary tree to handle the key/list
  * association. */
 
 /* 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 "localmem.h"
 #include "rbTree.h"
 #include "longToList.h"
 
 static int llKeyListCmp(void *va, void *vb)
 /* Compare to sort two llKeyLists on key */
 {
 /* Point typed pointers at a and b */
 struct llKeyList *a = va;
 struct llKeyList *b = vb;
 
 /* We can't just return a->key - b->key because of long/int overflow */
 if (a->key > b->key)