New file. Contains prototyes from `error.c'.

* error.h: New file.  Contains prototyes from `error.c'.
This commit is contained in:
Raja R Harinath 1998-08-20 21:52:38 +00:00
parent 28b4e6c672
commit d2e3abde2b
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,7 @@
1998-08-20 Raja R Harinath <harinath@cs.umn.edu>
* error.h: New file. Contains prototyes from `error.c'.
Thu Aug 13 19:02:34 1998 Tom Tromey <tromey@cygnus.com>
* Makefile.am (xmlincdir): New macro.

8
error.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef error_h_
#define error_h_
#include "parser.h"
void xmlParserError(xmlParserCtxtPtr ctxt, const char *msg, ...);
void xmlParserWarning(xmlParserCtxtPtr ctxt, const char *msg, ...);
#endif