1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-01 13:20:43 +00:00

Merge pull request from orbea/poll.h

Use the posix poll.h instead of sys/poll.h.
This commit is contained in:
Twinaphex 2019-02-01 19:13:29 +01:00 committed by GitHub
commit dd23adb367
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions
audio
gfx/drivers_context
input
drivers
drivers_joypad

@ -52,7 +52,7 @@
#include <netinet/in.h> #include <netinet/in.h>
#include <netinet/tcp.h> #include <netinet/tcp.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#include <sys/poll.h> #include <poll.h>
#endif #endif
#include <fcntl.h> #include <fcntl.h>
#ifdef _WIN32 #ifdef _WIN32

@ -29,7 +29,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <fcntl.h> #include <fcntl.h>
#include <sys/poll.h> #include <poll.h>
#include <libdrm/drm.h> #include <libdrm/drm.h>
#include <gbm.h> #include <gbm.h>

@ -14,7 +14,7 @@
* If not, see <http://www.gnu.org/licenses/>. * If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <sys/poll.h> #include <poll.h>
#include <unistd.h> #include <unistd.h>
#include <wayland-client.h> #include <wayland-client.h>

@ -44,7 +44,7 @@
#elif defined(HAVE_KQUEUE) #elif defined(HAVE_KQUEUE)
#include <sys/event.h> #include <sys/event.h>
#endif #endif
#include <sys/poll.h> #include <poll.h>
#include <libudev.h> #include <libudev.h>
#ifdef __linux__ #ifdef __linux__

@ -23,7 +23,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/poll.h> #include <poll.h>
#include <libudev.h> #include <libudev.h>
#ifdef __linux__ #ifdef __linux__
#include <linux/types.h> #include <linux/types.h>