aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
-rw-r--r--c2xml.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/c2xml.c b/c2xml.c
index 2d911ffe..37f29cf9 100644
--- a/c2xml.c
+++ b/c2xml.c
@@ -21,11 +21,9 @@
#include "scope.h"
#include "symbol.h"
-xmlDocPtr doc = NULL; /* document pointer */
-xmlNodePtr root_node = NULL;/* root node pointer */
-xmlDtdPtr dtd = NULL; /* DTD pointer */
-xmlNsPtr ns = NULL; /* namespace pointer */
-int idcount = 0;
+static xmlDocPtr doc = NULL; /* document pointer */
+static xmlNodePtr root_node = NULL;/* root node pointer */
+static int idcount = 0;
static void examine_symbol(struct symbol *sym, xmlNodePtr node);