a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/xap.c src/lib/xap.c index 9d9ac6e..1da6d0c 100644 --- src/lib/xap.c +++ src/lib/xap.c @@ -1,28 +1,27 @@ /* xap - XML Automatic Parser - together with autoXml this helps automatically * read in automatically generated data structures. Calls lower level routine * in xp module, which originally was just a thin shell around expat. * * This file is copyright 2002 Jim Kent, but license is hereby * granted for all use - public, private or commercial. */ #include "common.h" #include "xap.h" #include "errabort.h" #include "xp.h" -static char const rcsid[] = "$Id: xap.c,v 1.11 2005/12/19 05:18:26 kent Exp $"; void xapError(struct xap *xap, char *format, ...) /* Issue an error message and abort*/ { va_list args; va_start(args, format); vaWarn(format, args); errAbort("line %d of %s", xpLineIx(xap->xp), xap->fileName); va_end(args); } static void xapStartTag(void *userData, char *name, char **atts) /* Handle beginning of a tag. */ { struct xap *xap = userData;