Add header guard.

This commit is contained in:
Michael R Sweet 2019-11-19 11:27:12 -05:00
parent 55c6c7278d
commit cccb6ea053
No known key found for this signature in database
GPG Key ID: 999559A027815955

View File

@ -9,12 +9,15 @@
* information.
*/
#ifndef _mxml_private_h_
# define _mxml_private_h_
/*
* Include necessary headers...
*/
#include "config.h"
#include "mxml.h"
# include "config.h"
# include "mxml.h"
/*
@ -96,3 +99,5 @@ typedef struct _mxml_global_s /**** Global, per-thread data ****/
extern _mxml_global_t *_mxml_global(void);
extern int _mxml_entity_cb(const char *name);
#endif /* !_mxml_private_h_ */