aboutsummaryrefslogtreecommitdiff
path: root/ares/windows_port.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2010-03-24 10:34:30 +0100
committerDaniel Stenberg <daniel@haxx.se>2010-03-24 10:34:30 +0100
commit4259d2df7dd95637a4b1e3fb174fe5e5aef81069 (patch)
tree8abd5ab61fbacf160f9084a44613fcc4b20e8483 /ares/windows_port.c
parent4b351d018e3d6691191fd653a17f14f4a31e0b4c (diff)
remove the ares subtree
c-ares is now hosted entirely separate from the curl project see http://c-ares.haxx.se/ for all details concerning c-ares, its source repository and more.
Diffstat (limited to 'ares/windows_port.c')
-rw-r--r--ares/windows_port.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/ares/windows_port.c b/ares/windows_port.c
deleted file mode 100644
index 64096a5be..000000000
--- a/ares/windows_port.c
+++ /dev/null
@@ -1,23 +0,0 @@
-#include "ares_setup.h"
-
-/* $Id$ */
-
-/* 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 */