summaryrefslogtreecommitdiff
path: root/src/client/HTTP.cpp
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2012-06-12 15:05:02 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-06-12 15:05:02 (GMT)
commit117b1fb5c487f6d3f15428c1319e8b8c440ba535 (patch)
tree3ddd3de623a91de946fcd643b73e68bab13b92a3 /src/client/HTTP.cpp
parent573035ac10659e4f89e6c1a5460126697b715a7f (diff)
downloadpowder-117b1fb5c487f6d3f15428c1319e8b8c440ba535.zip
powder-117b1fb5c487f6d3f15428c1319e8b8c440ba535.tar.gz
TPT: Fix includes for OSX and BSD a75da2c4c3
Diffstat (limited to 'src/client/HTTP.cpp')
-rw-r--r--src/client/HTTP.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/HTTP.cpp b/src/client/HTTP.cpp
index e0b2b6d..a8e5764 100644
--- a/src/client/HTTP.cpp
+++ b/src/client/HTTP.cpp
@@ -23,8 +23,10 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#if !defined(MACOSX) && !defined(BSD)
+#ifndef WIN32
#include <sys/param.h>
+#endif
+#if !defined(MACOSX) && !defined(BSD)
#include <malloc.h>
#endif
#include <time.h>