mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Fix: Use POSIX poll.h instead of sys/poll.h
This commit is contained in:
parent
1773e723c0
commit
149194d6af
@ -22,7 +22,7 @@
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#ifdef HAVE_POLL
|
||||
#include <sys/poll.h>
|
||||
#include <poll.h>
|
||||
#endif
|
||||
#include <sys/types.h>
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include <errno.h>
|
||||
|
||||
#ifdef HAVE_POLL
|
||||
#include <sys/poll.h>
|
||||
#include <poll.h>
|
||||
#endif
|
||||
|
||||
#ifndef _WIN32
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include <sys/time.h>
|
||||
#include <unistd.h>
|
||||
#ifdef HAVE_POLL
|
||||
#include <sys/poll.h>
|
||||
#include <poll.h>
|
||||
#endif
|
||||
#else
|
||||
#include <windows.h>
|
||||
|
Loading…
Reference in New Issue
Block a user