diff options
| author | Emilio G. Cota <cota@braap.org> | 2020-06-05 16:49:16 +0100 |
|---|---|---|
| committer | Alex Bennée <alex.bennee@linaro.org> | 2020-06-08 16:59:25 +0100 |
| commit | 02324a475c7df4223d63d631d0cead61f0efeb03 (patch) | |
| tree | 2a4d0c43c0cb5ba8671add99f25ec45f2be35e70 /include/qemu | |
| parent | 49ee11555262a256afec592dfed7c5902d5eefd2 (diff) | |
| download | focaccia-qemu-02324a475c7df4223d63d631d0cead61f0efeb03.tar.gz focaccia-qemu-02324a475c7df4223d63d631d0cead61f0efeb03.zip | |
qemu-plugin.h: add missing include <stddef.h> to define size_t
Signed-off-by: Emilio G. Cota <cota@braap.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20200524202427.951784-1-cota@braap.org> Message-Id: <20200605154929.26910-2-alex.bennee@linaro.org>
Diffstat (limited to 'include/qemu')
| -rw-r--r-- | include/qemu/qemu-plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qemu/qemu-plugin.h b/include/qemu/qemu-plugin.h index 89ed579f55..bab8b0d4b3 100644 --- a/include/qemu/qemu-plugin.h +++ b/include/qemu/qemu-plugin.h @@ -12,6 +12,7 @@ #include <inttypes.h> #include <stdbool.h> +#include <stddef.h> /* * For best performance, build the plugin with -fvisibility=hidden so that |