From c2e2479cc51465ae18357d73f7d4aa7ba98ea0b3 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 15 Jun 2010 20:04:29 -0700 Subject: [PATCH] Fix Linux build --- src/node_http_parser.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/node_http_parser.cc b/src/node_http_parser.cc index 6d2e2b3a2e..53f19fbf5b 100644 --- a/src/node_http_parser.cc +++ b/src/node_http_parser.cc @@ -7,6 +7,8 @@ #include #include /* strcasecmp() */ +#include /* strdup() */ +#include /* free() */ // This is a binding to http_parser (http://github.com/ry/http-parser) // The goal is to decouple sockets from parsing for more javascript-level