diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2014-09-26 16:46:02 -0300 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2014-11-02 10:04:34 +0300 |
commit | a5ebc0ebae1d2283cfec4170b1a04317f2faee74 (patch) | |
tree | 5b485e637a3a04bcb01b7671d631957f95f21555 /tests/test-bitops.c | |
parent | ee29498e4f0f3eff90eeeb7f5fa1703abedd2fb6 (diff) |
tests: Add missing include to test-bitops.c
The test code needs osdep.h for the ARRAY_SIZE macro.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'tests/test-bitops.c')
-rw-r--r-- | tests/test-bitops.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test-bitops.c b/tests/test-bitops.c index 8238eb5f6b..47b5d3ed9a 100644 --- a/tests/test-bitops.c +++ b/tests/test-bitops.c @@ -8,6 +8,7 @@ #include <glib.h> #include <stdint.h> +#include "qemu/osdep.h" #include "qemu/bitops.h" typedef struct { |