From: Gerd Hoffmann Date: Thu, 10 Sep 2009 08:58:34 +0000 (+0200) Subject: qemu-option.h include protectors X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9d868d4517be12226991b2cc55d11bc0f83ea7b2;p=qemu.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 08629deb99..e49d715091 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 */