From cccb6ea053f7370bc84c97109c2626e7f9804f4f Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Tue, 19 Nov 2019 11:27:12 -0500 Subject: [PATCH] Add header guard. --- mxml-private.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/mxml-private.h b/mxml-private.h index a97d769..80fa28b 100644 --- a/mxml-private.h +++ b/mxml-private.h @@ -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_ */