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/phyloTree.c src/lib/phyloTree.c
index 0c49718..11ce572 100644
--- src/lib/phyloTree.c
+++ src/lib/phyloTree.c
@@ -1,15 +1,18 @@
+/* Copyright (C) 2011 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "phyloTree.h"
 
 
 struct phyloTree *phyloReadTree(struct lineFile *lf)
 /* reads a phyloTree from lineFile (first line only) */
 {
 struct phyloTree *tree = NULL;
 char *ptr;
 int len;
 
 if (lineFileNext(lf, &ptr, &len) && (len > 0))
     tree = phyloParseString(ptr);