e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/lib/genomeRangeTree.c src/lib/genomeRangeTree.c
index d6e2e7d..bbcf26b 100644
--- src/lib/genomeRangeTree.c
+++ src/lib/genomeRangeTree.c
@@ -1,24 +1,27 @@
 /* genomeRangeTree - This module is a way of keeping track of
  * non-overlapping ranges (half-open intervals) across a whole
  * genome (multiple chromosomes or scaffolds). 
  * It is a hash table container mapping chrom to rangeTree.
  * Most of the work is performed by rangeTree, this container
  * enables local memory and stack to be shared by many rangeTrees
  * so it should be able to handle genomes with a very large 
  * number of scaffolds. See rangeTree for more information. */
 
+/* Copyright (C) 2014 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "sig.h"
 #include "localmem.h"
 #include "rbTree.h"
 #include "hash.h"
 #include "rangeTree.h"
 #include "genomeRangeTree.h"
 #include "dystring.h"
 #include <limits.h>
 
 
 struct genomeRangeTree *genomeRangeTreeNewSize(int hashPowerOfTwoSize)
 /* Create a new, empty, genomeRangeTree. 
  * Free with genomeRangeTreeFree. */
 {