Introduced entropy_free()
diff --git a/library/entropy.c b/library/entropy.c
index 2352bcf..d43f983 100644
--- a/library/entropy.c
+++ b/library/entropy.c
@@ -64,6 +64,11 @@
 #endif /* POLARSSL_NO_DEFAULT_ENTROPY_SOURCES */
 }
 
+void entropy_free( entropy_context *ctx )
+{
+    ((void) ctx);
+}
+
 int entropy_add_source( entropy_context *ctx,
                         f_source_ptr f_source, void *p_source,
                         size_t threshold )