diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2014-09-26 16:46:04 -0300 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2014-11-02 10:04:34 +0300 |
commit | d6aaddfe977417e3df4fc8a0fc0b4cc015909b84 (patch) | |
tree | 65aba30e5ba322969cb384547c0262e91cf48aa7 /include | |
parent | afeeead1bcd1080a621500240ea74ec433b21885 (diff) |
bitmap.h: Don't include qemu-common.h
This will avoid unexpected circular header dependencies in the future.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/bitmap.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/qemu/bitmap.h b/include/qemu/bitmap.h index edf4f17d9c..f0273c965f 100644 --- a/include/qemu/bitmap.h +++ b/include/qemu/bitmap.h @@ -12,7 +12,11 @@ #ifndef BITMAP_H #define BITMAP_H -#include "qemu-common.h" +#include <glib.h> +#include <string.h> +#include <stdlib.h> + +#include "qemu/osdep.h" #include "qemu/bitops.h" /* |