From 1c129203dfe0f167d836f13ad8bfe35359b745c8 Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Thu, 25 Apr 2024 13:54:43 -0300 Subject: [PATCH] Remove redundant (and case-insensitive) header windows.h is already included at the top of this header. --- include/ethyl/ecdsa_util.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/ethyl/ecdsa_util.h b/include/ethyl/ecdsa_util.h index ffab575..cc35da7 100644 --- a/include/ethyl/ecdsa_util.h +++ b/include/ethyl/ecdsa_util.h @@ -79,10 +79,6 @@ printf("\n"); } -#if defined(_MSC_VER) || defined(__CYGWIN__) -// For SecureZeroMemory -#include -#endif /* Cleanses memory to prevent leaking sensitive info. Won't be optimized out. */ [[maybe_unused]] static void secure_erase(void *ptr, size_t len) { #if defined(_MSC_VER) || defined(__CYGWIN__)