Remove use of C99 construct

This is an LTS branch, C99 isn't allowed yet, it breaks versions of MSVC that
we still support for this branch.

Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
diff --git a/library/ssl_tls.c b/library/ssl_tls.c
index 533f301..96c7e6c 100644
--- a/library/ssl_tls.c
+++ b/library/ssl_tls.c
@@ -1844,7 +1844,8 @@
 #endif
 
     /* dst[i] = c1 != c2 ? dst[i] : src[i] */
-    for( size_t i = 0; i < len; i++ )
+    size_t i;
+    for( i = 0; i < len; i++ )
         dst[i] = ( dst[i] & mask ) | ( src[i] & ~mask );
 }