Revert "wincng.c: fix clear memory feature compilation with mingw"

This reverts commit 2d2744efdd0497b72b3e1ff6e732aa4c0037fc43.

Autobuilds show that this did not solve the issue.
And it seems like RtlFillMemory is defined to memset,
which would be optimized out by some compilers.
diff --git a/src/wincng.c b/src/wincng.c
index 452df8b..cb60888 100644
--- a/src/wincng.c
+++ b/src/wincng.c
@@ -67,15 +67,6 @@
 #include <wincrypt.h>
 #endif
 
-/* required for compilation of clear memory feature with mingw */
-#ifdef LIBSSH2_CLEAR_MEMORY
-#ifdef __MINGW32__
-#ifndef SecureZeroMemory
-#define SecureZeroMemory(ptr, cnt) RtlFillMemory(ptr, cnt, 0)
-#endif
-#endif
-#endif
-
 #define PEM_RSA_HEADER "-----BEGIN RSA PRIVATE KEY-----"
 #define PEM_RSA_FOOTER "-----END RSA PRIVATE KEY-----"
 #define PEM_DSA_HEADER "-----BEGIN DSA PRIVATE KEY-----"