diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-06-06 13:57:39 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-06-16 18:39:03 +0200 |
commit | 02d0e095031b7fda77de8b558465a57659ea79cb (patch) | |
tree | 78ce56328efb58eec9c99584b71229bae47d3030 /include/sysemu | |
parent | 89266923df71e51f406184d3e8b55d2a3aaa4c4d (diff) | |
download | qemu-02d0e095031b7fda77de8b558465a57659ea79cb.zip |
os-posix: include sys/mman.h
qemu/osdep.h checks whether MAP_ANONYMOUS is defined, but this check
is bogus without a previous inclusion of sys/mman.h. Include it in
sysemu/os-posix.h and remove it from everywhere else.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/sysemu')
-rw-r--r-- | include/sysemu/os-posix.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sysemu/os-posix.h b/include/sysemu/os-posix.h index 07e3e5ae9b..9c7dfdfbec 100644 --- a/include/sysemu/os-posix.h +++ b/include/sysemu/os-posix.h @@ -26,6 +26,7 @@ #ifndef QEMU_OS_POSIX_H #define QEMU_OS_POSIX_H +#include <sys/mman.h> #include <sys/socket.h> #include <netinet/in.h> #include <netinet/tcp.h> |