0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-27 15:41:05 +08:00

Merge pull request #4311 from myd7349/fix-sockaddr_un-redefinition

Problem: struct sockaddr_un redefinition
This commit is contained in:
Luca Boccassi 2021-11-25 12:07:00 +00:00 committed by GitHub
commit 1d3633742a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,7 +90,6 @@ static inline int poll (struct pollfd *pfd, unsigned long nfds, int timeout)
#ifndef AI_NUMERICSERV
#define AI_NUMERICSERV 0x0400
#endif
#endif
// In MSVC prior to v14, snprintf is not available
// The closest implementation is the _snprintf_s function
@ -108,3 +107,5 @@ struct sockaddr_un
char sun_path[108]; /* pathname */
};
#endif
#endif