aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl/libxl_json.c
diff options
context:
space:
mode:
authorIan Jackson <ian.jackson@eu.citrix.com>2011-12-12 17:48:40 +0000
committerIan Jackson <ian.jackson@eu.citrix.com>2011-12-12 17:48:40 +0000
commit8618d4e458b1202af92ba9aad026cb201f0d58bd (patch)
treef73549239caac89cdaab446487b9ddb7ebe61228 /tools/libxl/libxl_json.c
parent814268e81de4722244c775627b736a9ff76cdeda (diff)
downloadxen-8618d4e458b1202af92ba9aad026cb201f0d58bd.tar.gz
xen-8618d4e458b1202af92ba9aad026cb201f0d58bd.tar.bz2
xen-8618d4e458b1202af92ba9aad026cb201f0d58bd.zip
libxl: Rationalise #includes
libxl_internal.h now #includes libxl.h and various system headers. This 1. makes the order of header inclusion more predictable 2. explicitly allows libxl_internal.h to use objects defined in libxl.h 3. removes the need for individual files to include these headers Also - remove some unnecessary #includes of libxl_utils.h, flexarray.h, etc. in some libxl*.c files, - include libxl_osdeps.h at the top of libxl_internal.h - add missing includes of libxl_osdeps.h to a couple of files - change libxl.h to libxl_internal.h in a couple of files Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com> Acked-by: Ian Campbell <ian.campbell@citrix.com> Committed-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
Diffstat (limited to 'tools/libxl/libxl_json.c')
-rw-r--r--tools/libxl/libxl_json.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/libxl/libxl_json.c b/tools/libxl/libxl_json.c
index fd5e2aac46..c0f869e1eb 100644
--- a/tools/libxl/libxl_json.c
+++ b/tools/libxl/libxl_json.c
@@ -12,6 +12,8 @@
* GNU Lesser General Public License for more details.
*/
+#include "libxl_osdeps.h"
+
#include <assert.h>
#include <string.h>
#include <math.h>
@@ -19,7 +21,6 @@
#include <yajl/yajl_parse.h>
#include <yajl/yajl_gen.h>
-#include <libxl.h>
#include "libxl_internal.h"
/* #define DEBUG_ANSWER */