From: Eduardo Habkost Date: Tue, 23 Oct 2012 23:37:20 +0000 (-0200) Subject: qga/channel-posix.c: Include headers it needs X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4d4922c339abf67e47c79068d343ed41a020b8e2;p=qemu.git qga/channel-posix.c: Include headers it needs Include: - for errno - & for fcntl() - for exit() - "osdep.h" for qemu_open() Some of those headers were probably being included by accident because some other headers were including qemu-common.h, but those headers should eventually stop including qemu-common.h. Signed-off-by: Eduardo Habkost Signed-off-by: Igor Mammedov Signed-off-by: Andreas Färber --- diff --git a/qga/channel-posix.c b/qga/channel-posix.c index d152827bcf..769a559456 100644 --- a/qga/channel-posix.c +++ b/qga/channel-posix.c @@ -1,5 +1,10 @@ #include #include +#include +#include +#include +#include +#include "osdep.h" #include "qemu_socket.h" #include "qga/channel.h"