From 8f969983389d428de381469944712e468f99e345 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 10 Jul 2008 14:15:46 +0100 Subject: stubdom: fixes to compile with qemu-xen This adds fixes to the stub domain build into compiling Ian Jackson's qemu-xen. The most notable change is that mini-os headers now #include each other through a mini-os/ prefix, so that we can turn all -I into -isystem and still be sure that we include Mini-OS headers (and not qemu's console.h or blktaplib's list.h for instance...). Signed-off-by: Samuel Thibault --- extras/mini-os/include/lib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extras/mini-os/include/lib.h') diff --git a/extras/mini-os/include/lib.h b/extras/mini-os/include/lib.h index ababf890fb..b508c38f51 100644 --- a/extras/mini-os/include/lib.h +++ b/extras/mini-os/include/lib.h @@ -99,13 +99,13 @@ char *strstr(const char *s1, const char *s2); char * strcat(char * dest, const char * src); char *strdup(const char *s); #endif -#include +#include #define RAND_MIX 2654435769U int rand(void); -#include +#include #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) -- cgit v1.2.3