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/dtdParse.c src/lib/dtdParse.c
index 1406adc..f3745ef 100644
--- src/lib/dtdParse.c
+++ src/lib/dtdParse.c
@@ -1,19 +1,22 @@
 /* dtdParse - parse an XML DTD file.  Actually this only
  * parses a relatively simple subset of DTD's.  It's still
  * useful for autoXml and xmlToSql. */
 
+/* Copyright (C) 2012 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "hash.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "obscure.h"
 #include "dtdParse.h"
 
 
 static void syntaxError(struct lineFile *lf)
 /* Report syntax error and exit. */
 {
 errAbort("Syntax error line %d of %s", lf->lineIx, lf->fileName);
 }
 
 static char *needNextWord(char **pLine, struct lineFile *lf)