aboutsummaryrefslogtreecommitdiff
path: root/ares/setup_once.h
diff options
context:
space:
mode:
Diffstat (limited to 'ares/setup_once.h')
-rw-r--r--ares/setup_once.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/ares/setup_once.h b/ares/setup_once.h
index 6daf9d8b7..41b42e900 100644
--- a/ares/setup_once.h
+++ b/ares/setup_once.h
@@ -28,6 +28,13 @@
/*
+ * Inclusion of common header files.
+ */
+
+#include <errno.h>
+
+
+/*
* If we have the MSG_NOSIGNAL define, make sure we use
* it as the fourth argument of function send()
*/
@@ -219,10 +226,14 @@ typedef int sig_atomic_t;
#define ETIMEDOUT WSAETIMEDOUT
#define ECONNREFUSED WSAECONNREFUSED
#define ELOOP WSAELOOP
+#ifndef ENAMETOOLONG /* possible previous definition in errno.h */
#define ENAMETOOLONG WSAENAMETOOLONG
+#endif
#define EHOSTDOWN WSAEHOSTDOWN
#define EHOSTUNREACH WSAEHOSTUNREACH
+#ifndef ENOTEMPTY /* possible previous definition in errno.h */
#define ENOTEMPTY WSAENOTEMPTY
+#endif
#define EPROCLIM WSAEPROCLIM
#define EUSERS WSAEUSERS
#define EDQUOT WSAEDQUOT