diff options
| author | Eduardo Habkost | 2014-09-26 21:46:04 +0200 |
|---|---|---|
| committer | Michael Tokarev | 2014-11-02 08:04:34 +0100 |
| commit | d6aaddfe977417e3df4fc8a0fc0b4cc015909b84 (patch) | |
| tree | 65aba30e5ba322969cb384547c0262e91cf48aa7 /include | |
| parent | bitops.h: Don't include qemu-common.h (diff) | |
| download | qemu-d6aaddfe977417e3df4fc8a0fc0b4cc015909b84.tar.gz qemu-d6aaddfe977417e3df4fc8a0fc0b4cc015909b84.tar.xz qemu-d6aaddfe977417e3df4fc8a0fc0b4cc015909b84.zip | |
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" /* |
