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/hg/inc/customPp.h src/hg/inc/customPp.h
index 9d224fb..ff63bfe 100644
--- src/hg/inc/customPp.h
+++ src/hg/inc/customPp.h
@@ -1,24 +1,27 @@
 /* customPp - custom track preprocessor.  This handles the line-oriented
  * input/output for the custom track system.  The main services it provides
  * are taking care of references to URLs, which are treated as includes,
  * and moving lines that start with "browser" to a list.
  *
  * Also this allows unlimited "pushBack" of lines, which is handy, since
  * the system will analyse a number of lines of a track to see what format
  * it's in. */
 
+/* Copyright (C) 2014 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #ifndef CUSTOMPP_H
 #define CUSTOMPP_H
 
 struct customPp
 /* Custom track preprocessor. */
     {
     struct customPp *next;	 /* Next customPp in list */
     struct lineFile *fileStack;  /* Keep track of files we're included from */
     struct slName *browserLines; /* Lines seen so far that start w/ browser */
     struct slName *reusedLines;  /* Lines pushed back by customPpReuse. */
     struct slName *inReuse;	 /* Line in process of being reused. */
     struct slName *skippedLines; /* Nonempty lines skipped by most recent customPpNextReal */
     boolean ignoreBrowserLines;  /* Flag to suppress removal of browser lines */
                                  /*   so preprocessor can be used with docs */
 #ifdef PROGRESS_METER