MAINTENANCE: reorganize file structure
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 223fcab..bf9e287 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -23,7 +23,7 @@
src/common.c
src/log.c
src/dict.c
- src/xml/xml_parser.c)
+ src/xml.c)
add_library(yang SHARED ${src})
set_target_properties(yang PROPERTIES VERSION 0.1.0 SOVERSION 0.1)
diff --git a/src/xml/xml_parser.c b/src/xml.c
similarity index 99%
rename from src/xml/xml_parser.c
rename to src/xml.c
index 2d53386..80441de 100644
--- a/src/xml/xml_parser.c
+++ b/src/xml.c
@@ -27,8 +27,8 @@
#include <string.h>
#include <unistd.h>
-#include "../common.h"
-#include "../dict.h"
+#include "common.h"
+#include "dict.h"
#include "xml.h"
/*
diff --git a/src/xml/xml.h b/src/xml.h
similarity index 100%
rename from src/xml/xml.h
rename to src/xml.h