Changed mbedtls_platform_memcpy to memcpy in places which don't handle critical data
and under baremetal define
diff --git a/library/platform_util.c b/library/platform_util.c
index 6d3c9ef..db46fe9 100644
--- a/library/platform_util.c
+++ b/library/platform_util.c
@@ -211,7 +211,7 @@
 
     if( lt != NULL )
     {
-        mbedtls_platform_memcpy( tm_buf, lt, sizeof( struct tm ) );
+        memcpy( tm_buf, lt, sizeof( struct tm ) );
     }
 
 #if defined(MBEDTLS_THREADING_C)