diff options
author | Felix Janda <felix.janda@posteo.de> | 2016-09-30 19:40:21 -0400 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2016-10-08 11:25:29 +0300 |
commit | 0839f11cda08039d15b3e7621390de3e512b24e7 (patch) | |
tree | ab0e2d6227350c80b62e5831e0473d3443d374e1 | |
parent | 660a2d83e026496db6b3eaec2256a2cdd6c74de8 (diff) | |
download | qemu-0839f11cda08039d15b3e7621390de3e512b24e7.tar.gz qemu-0839f11cda08039d15b3e7621390de3e512b24e7.tar.bz2 qemu-0839f11cda08039d15b3e7621390de3e512b24e7.zip |
linux-user: include <poll.h> instead of <sys/poll.h>
This removes the last usage of <sys/poll.h> in the code base.
Signed-off-by: Felix Janda <felix.janda@posteo.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rw-r--r-- | linux-user/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 0815f30965..52012d4aa5 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -42,7 +42,7 @@ int __clone2(int (*fn)(void *), void *child_stack_base, #include <sys/socket.h> #include <sys/un.h> #include <sys/uio.h> -#include <sys/poll.h> +#include <poll.h> #include <sys/times.h> #include <sys/shm.h> #include <sys/sem.h> |