summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2012-04-01 09:27:45 (GMT)
committerRemko Tronçon <git@el-tramo.be>2012-04-01 09:27:45 (GMT)
commite9a33e1cfc91af374f928931f47b19f53cb165d7 (patch)
treef0a72876d8b0f53f6e5a335321aca785e81129dd /3rdParty/CAres/src/windows_port.c
parent950dfa7923f62297429e49a135e4fb363447366d (diff)
downloadswift-e9a33e1cfc91af374f928931f47b19f53cb165d7.zip
swift-e9a33e1cfc91af374f928931f47b19f53cb165d7.tar.bz2
Removing CAres resolver.
This has never been used.
Diffstat (limited to '3rdParty/CAres/src/windows_port.c')
-rw-r--r--3rdParty/CAres/src/windows_port.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/3rdParty/CAres/src/windows_port.c b/3rdParty/CAres/src/windows_port.c
deleted file mode 100644
index ce129ae..0000000
--- a/3rdParty/CAres/src/windows_port.c
+++ /dev/null
@@ -1,23 +0,0 @@
-#include "ares_setup.h"
-
-/* $Id: windows_port.c,v 1.22 2009-11-02 11:55:54 yangtse Exp $ */
-
-/* only do the following on windows
- */
-#if (defined(WIN32) || defined(WATT32)) && !defined(MSDOS)
-
-#ifdef __WATCOMC__
-/*
- * Watcom needs a DllMain() in order to initialise the clib startup code.
- */
-BOOL
-WINAPI DllMain (HINSTANCE hnd, DWORD reason, LPVOID reserved)
-{
- (void) hnd;
- (void) reason;
- (void) reserved;
- return (TRUE);
-}
-#endif
-
-#endif /* WIN32 builds only */