fix incorrect poll.h inclusion

sys/poll.h is a glibc legacy alias for poll.h.
the latter is specified by POSIX, the former not.
on glibc one of them just includes the other so it doesnt hurt.
musl-preload
rofl0r 2014-01-08 14:57:10 +01:00
parent 582b3ced26
commit f868928c4b
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
#include <arpa/inet.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/poll.h>
#include <poll.h>
#include <sys/wait.h>
#include <fcntl.h>
#include <time.h>