From b2f66c91586653d402f1d526eac88d1f8b67a935 Mon Sep 17 00:00:00 2001
From: Paul Bakker
Date: Tue, 4 Feb 2014 16:27:57 +0100
Subject: [PATCH] Only include platform files when needed
---
include/polarssl/platform.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/polarssl/platform.h b/include/polarssl/platform.h
index 61b31190f..22a1f464c 100644
--- a/include/polarssl/platform.h
+++ b/include/polarssl/platform.h
@@ -29,7 +29,6 @@
#include "config.h"
-#include
#include
#ifdef __cplusplus
@@ -47,6 +46,7 @@ extern "C" {
#if defined(POLARSSL_MEMORY_C)
#include "memory.h"
#else
+#include
#define polarssl_malloc malloc
#define polarssl_free free
#endif