Add stdlib.h include to hello.c sample
diff --git a/programs/hash/hello.c b/programs/hash/hello.c
index a69154f..a0c08c7 100644
--- a/programs/hash/hello.c
+++ b/programs/hash/hello.c
@@ -28,6 +28,7 @@
 #if defined(MBEDTLS_PLATFORM_C)
 #include "mbedtls/platform.h"
 #else
+#include <stdlib.h>
 #include <stdio.h>
 #define mbedtls_printf       printf
 #define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS