include: remove unneeded EADDRINFO errno

EADDRINFO is not a readl errno, it was used to signal any error that
getaddrinfo would return, but we return actual errors now.
This commit is contained in:
Saúl Ibarra Corretgé 2014-08-07 21:04:37 +02:00
parent a9a4872c29
commit 02e1ebd40b

View File

@ -57,12 +57,6 @@
# define UV__EACCES (-4092)
#endif
#if defined(EADDRINFO) && !defined(_WIN32)
# define UV__EADDRINFO EADDRINFO
#else
# define UV__EADDRINFO (-4091)
#endif
#if defined(EADDRINUSE) && !defined(_WIN32)
# define UV__EADDRINUSE (-EADDRINUSE)
#else