a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/dtdParse.c src/lib/dtdParse.c
index a216886..dd86acf 100644
--- src/lib/dtdParse.c
+++ src/lib/dtdParse.c
@@ -1,27 +1,26 @@
 /* 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. */
 
 #include "common.h"
 #include "hash.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "obscure.h"
 #include "dtdParse.h"
 
-static char const rcsid[] = "$Id: dtdParse.c,v 1.5 2008/09/17 17:56:37 kent Exp $";
 
 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)
 /* Get next word in line.  Squawk and die if can't find it. */
 {
 char *word = nextWord(pLine);
 if (word == NULL)
     errAbort("Missing data line %d of %s", lf->lineIx, lf->fileName);
 return word;
 }