raw1394: avoid including <sys/poll.h> directly

Note from Edward Hervey: Patch from git.yoctoproject.org

musl libc generates warnings if <sys/poll.h> is included directly.

Upstream-Status: Pending

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
This commit is contained in:
Andre McCurdy 2016-02-03 18:12:38 -08:00 committed by Edward Hervey
parent c097289725
commit 07abf5d60f
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@
#include "config.h"
#endif
#include <unistd.h>
#include <sys/poll.h>
#include <poll.h>
#include <sys/socket.h>
#include <errno.h>
#include <fcntl.h>

View file

@ -36,7 +36,7 @@
#include "config.h"
#endif
#include <unistd.h>
#include <sys/poll.h>
#include <poll.h>
#include <sys/socket.h>
#include <errno.h>
#include <fcntl.h>