X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fnetwork%2Fpoll.c;h=f6f9050effd9df1f7c1ffd4b4f2d0b293295d2de;hb=747e569007af4f30ccf147873a01dd30ea16f7de;hp=2bef3f52564f3cdbcc76c7472452a4f25f95a8f9;hpb=6625284102fdfb850aedbe80bdc88f28d6d08efa;p=vlc diff --git a/src/network/poll.c b/src/network/poll.c index 2bef3f5256..f6f9050eff 100644 --- a/src/network/poll.c +++ b/src/network/poll.c @@ -26,13 +26,15 @@ #endif #include +#include #ifdef HAVE_POLL struct pollfd; int vlc_poll (struct pollfd *fds, unsigned nfds, int timeout) { - return poll (fds, nfds, timeout); + (void)fds; (void)nfds; (void)timeout; + abort (); } #else /* !HAVE_POLL */ #include