From a2b59be722807e134cc6b46701d0736516994a09 Mon Sep 17 00:00:00 2001 From: David Horstmann Date: Tue, 12 Nov 2024 19:01:47 +0000 Subject: [PATCH] Always include psa/crypto.h Previously this was not included when in 3.6 and PSA_CRYPTO_CLIENT was defined. Signed-off-by: David Horstmann --- tests/include/test/psa_crypto_helpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/include/test/psa_crypto_helpers.h b/tests/include/test/psa_crypto_helpers.h index 9c83af61d..7ae0e3034 100644 --- a/tests/include/test/psa_crypto_helpers.h +++ b/tests/include/test/psa_crypto_helpers.h @@ -14,9 +14,9 @@ #if (MBEDTLS_VERSION_MAJOR < 4 && defined(MBEDTLS_PSA_CRYPTO_C)) || \ (MBEDTLS_VERSION_MAJOR >= 4 && defined(MBEDTLS_PSA_CRYPTO_CLIENT)) #include "test/psa_helpers.h" -#include #endif +#include #include #if defined(MBEDTLS_PSA_CRYPTO_C)