Skip to content

Commit

Permalink
Fixed bug 4003 - HAVE_POLL undefined in SDL_poll.c, making it impossi…
Browse files Browse the repository at this point in the history
…ble to use.

tomwardio

HAVE_POLL is correctly defined in SDL_config.h when running configure. However, in the only place where it's used, it's undefined at the start of the file.
  • Loading branch information
slouken committed Dec 19, 2017
1 parent b92e2f0 commit 70082db
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/core/unix/SDL_poll.c
Expand Up @@ -24,7 +24,6 @@
#include "SDL_assert.h"
#include "SDL_poll.h"

#undef HAVE_POLL
#ifdef HAVE_POLL
#include <poll.h>
#else
Expand Down

0 comments on commit 70082db

Please sign in to comment.