Fix missing include in some files
Add it in all files that use mbedtls_plaform_memset() but didn't already
include platfom_util.h.
In some configurations it just happened to work, either because it was
included indirectly or because the part of the code that used that function
was disabled, but it some configurations it broke, so let's fix it properly.
diff --git a/library/error.c b/library/error.c
index 5a813f1..c993524 100644
--- a/library/error.c
+++ b/library/error.c
@@ -28,6 +28,7 @@
#if defined(MBEDTLS_ERROR_C) || defined(MBEDTLS_ERROR_STRERROR_DUMMY)
#include "mbedtls/error.h"
#include <string.h>
+#include "mbedtls/platform_util.h"
#endif
#if defined(MBEDTLS_PLATFORM_C)