Unbreak test

This commit is contained in:
Sergey Lyubka 2022-05-26 11:18:36 +01:00
parent 10596a8bdc
commit 7850b550d8
2 changed files with 2 additions and 2 deletions

View File

@ -440,7 +440,7 @@ extern int SockSet(SOCKET hSock, int Type, int Prop, void *pbuf, int size);
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if MG_ENABLE_POLL
#if defined(MG_ENABLE_POLL) && MG_ENABLE_POLL
#include <poll.h>
#else
#include <sys/select.h>

View File

@ -26,7 +26,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if MG_ENABLE_POLL
#if defined(MG_ENABLE_POLL) && MG_ENABLE_POLL
#include <poll.h>
#else
#include <sys/select.h>