diff --git a/httpp/httpp.c b/httpp/httpp.c index 2363931..e42bff6 100644 --- a/httpp/httpp.c +++ b/httpp/httpp.c @@ -41,10 +41,6 @@ #include #include "httpp.h" -#if defined(_WIN32) && !defined(HAVE_STRCASECMP) -#define strcasecmp stricmp -#endif - #define MAX_HEADERS 32 /* internal functions */ diff --git a/net/sock.c b/net/sock.c index d9bc18e..430d6f3 100644 --- a/net/sock.c +++ b/net/sock.c @@ -53,14 +53,6 @@ #include #else #include -#define vsnprintf _vsnprintf -#define EINPROGRESS WSAEINPROGRESS -#define ENOTSOCK WSAENOTSOCK -#define EWOULDBLOCK WSAEWOULDBLOCK -#define EALREADY WSAEALREADY -#define socklen_t int -#ifndef __MINGW32__ -#define va_copy(ap1, ap2) memcpy(&ap1, &ap2, sizeof(va_list)) #endif #endif