use windows config.h instead of normal config.h on windows

This commit is contained in:
fyodor 2005-09-12 09:03:38 +00:00
parent af98474855
commit 908942d57a

View file

@ -6,7 +6,11 @@
* $Id: ip-win32.c,v 1.5 2005/01/25 21:30:40 dugsong Exp $
*/
#include "config.h"
#ifdef _WIN32
#include "dnet_winconfig.h"
#else
#include "config.h"
#endif
#include <winsock2.h>
#include <ws2tcpip.h>