From a9066cf8f15ae42e57e3b9ff744acd7c286286b4 Mon Sep 17 00:00:00 2001
From: Paul Bakker
Date: Wed, 5 Feb 2014 15:13:04 +0100
Subject: [PATCH] Include stdlib in the right spot
---
include/polarssl/platform.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/polarssl/platform.h b/include/polarssl/platform.h
index 08832b3c3..b5dd4d144 100644
--- a/include/polarssl/platform.h
+++ b/include/polarssl/platform.h
@@ -36,6 +36,7 @@ extern "C" {
#endif
#if !defined(POLARSSL_CONFIG_OPTIONS)
+#include
#define POLARSSL_PLATFORM_STD_PRINTF printf /**< Default printf to use */
#define POLARSSL_PLATFORM_STD_FPRINTF fprintf /**< Default fprintf to use */
#define POLARSSL_PLATFORM_STD_MALLOC malloc /**< Default allocator to use */
@@ -45,7 +46,7 @@ extern "C" {
/*
* The function pointers for malloc and free
*/
-#if defined(POLARSSL_MEMORY_C)
+#if defined(POLARSSL_PLATFORM_MEMORY)
extern void * (*polarssl_malloc)( size_t len );
extern void (*polarssl_free)( void *ptr );
@@ -60,7 +61,6 @@ extern void (*polarssl_free)( void *ptr );
int platform_set_malloc_free( void * (*malloc_func)( size_t ),
void (*free_func)( void * ) );
#else
-#include
#define polarssl_malloc malloc
#define polarssl_free free
#endif