From: Gerd Hoffmann Date: Thu, 10 Sep 2009 08:58:34 +0000 (+0200) Subject: qemu-option.h include protectors X-Git-Tag: TizenStudio_2.0_p2.3~7561 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=21c6d22a013839eb38d63764502e9e4da4cd9500;p=sdk%2Femulator%2Fqemu.git qemu-option.h include protectors qemu-option.h has no protection against including it twice. This patch adds the usual "#ifndef header" bits. Signed-off-by: Gerd Hoffmann Signed-off-by: Anthony Liguori --- diff --git a/qemu-config.h b/qemu-config.h index 08629de..e49d715 100644 --- a/qemu-config.h +++ b/qemu-config.h @@ -1,4 +1,9 @@ +#ifndef QEMU_CONFIG_H +#define QEMU_CONFIG_H + extern QemuOptsList qemu_drive_opts; extern QemuOptsList qemu_device_opts; int qemu_set_option(const char *str); + +#endif /* QEMU_CONFIG_H */