diff --git a/src/node_http_parser.cc b/src/node_http_parser.cc index c062feea535604..b094ce5f2fbac7 100644 --- a/src/node_http_parser.cc +++ b/src/node_http_parser.cc @@ -16,12 +16,6 @@ #include // free() #include // strdup() -#if defined(_MSC_VER) -#define strcasecmp _stricmp -#else -#include // strcasecmp() -#endif - // This is a binding to http_parser (https://github.com/joyent/http-parser) // The goal is to decouple sockets from parsing for more javascript-level // agility. A Buffer is read from a socket and passed to parser.execute().