From f224187d1f5aff05dda58e4ba2867f59fab17ce6 Mon Sep 17 00:00:00 2001 From: Aveen Ismail Date: Thu, 28 Nov 2024 15:00:27 +0100 Subject: [PATCH] SCP11: Fix include headers for Windows --- lib/aes_util.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/aes_util.c b/lib/aes_util.c index 1abee2b2..98093684 100644 --- a/lib/aes_util.c +++ b/lib/aes_util.c @@ -33,11 +33,16 @@ #include "ykpiv.h" #include "aes_util.h" +#ifdef _WIN32 +#include +#else +#include +#endif + #include #if (OPENSSL_VERSION_NUMBER >= 0x30000000L) #include #include -#include #endif //static void dump_byte_array(uint8_t *a, size_t len, const char* label) {