1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-22 17:39:53 +03:00

Mayaqua: Replace GNU specific sys/poll.h header with POSIX poll.h

Fixes warning from the musl libc:

warning redirecting incorrect #include <sys/poll.h> to <poll.h>
This commit is contained in:
Rosen Penev 2019-07-10 17:01:01 -07:00
parent dcc99fdbb2
commit a4ed656001
No known key found for this signature in database
GPG Key ID: 36D31CFA845F0E3B

View File

@ -157,8 +157,8 @@ int PASCAL WinMain(HINSTANCE hInst, HINSTANCE hPrev, char *CmdLine, int CmdShow)
#ifdef UNIX_SOLARIS
#include <sys/filio.h>
#endif // UNIX_SOLARIS
#include <sys/poll.h>
#include <sys/resource.h>
#include <poll.h>
#include <pthread.h>
#ifdef UNIX_LINUX
#include <sys/prctl.h>