From 690a66b63972f5b262fe1e3eab50715bd482ea5e Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Thu, 8 Sep 2011 17:55:32 +0200 Subject: Fix include statements for qemu-common.h * qemu-common.h is not a system include file, so it should be included with "" instead of <>. Otherwise incremental builds might fail because only local include files are checked for changes. * linux-user/syscall.c included the file twice. Cc: Riku Voipio Cc: Jan Kiszka Acked-by: Kevin Wolf Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- libslirp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libslirp.h b/libslirp.h index 579d85d..ef253f9 100644 --- a/libslirp.h +++ b/libslirp.h @@ -1,7 +1,7 @@ #ifndef _LIBSLIRP_H #define _LIBSLIRP_H -#include +#include "qemu-common.h" #ifdef CONFIG_SLIRP -- cgit v1.1