1
0
mirror of synced 2025-04-20 11:47:43 +03:00

Merge pull request #63 from aguadoenzo/master

Fix compilation error with musl libc
This commit is contained in:
yhirose 2018-05-07 07:12:49 -04:00 committed by GitHub
commit e46cc54d13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,6 +48,7 @@ typedef SOCKET socket_t;
#include <arpa/inet.h> #include <arpa/inet.h>
#include <signal.h> #include <signal.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <sys/select.h>
typedef int socket_t; typedef int socket_t;
#endif #endif