From d79e63b3b701d7aeaa6e691262079df69d1fc109 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Thu, 28 May 2015 14:37:29 -0500 Subject: [PATCH] Fix implicit declaration warnings about htons()/htonl() on *nix --- limelight-common/Platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/limelight-common/Platform.h b/limelight-common/Platform.h index a6e0773..981c7b3 100644 --- a/limelight-common/Platform.h +++ b/limelight-common/Platform.h @@ -7,12 +7,12 @@ #ifdef _WIN32 #define WIN32_LEAN_AND_MEAN #include - #include #else #include #include #include +#include #endif #ifdef _WIN32