From ab4951fbeff81a3fcd37e5fea808c1e371408e30 Mon Sep 17 00:00:00 2001 From: Michael Schuster Date: Fri, 7 Jun 2024 06:57:06 +0200 Subject: [PATCH] Add missing include in tests/src/psa_memory_poisoning_wrappers.c to fix missing-prototype error Signed-off-by: Michael Schuster --- tests/src/psa_memory_poisoning_wrappers.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/src/psa_memory_poisoning_wrappers.c b/tests/src/psa_memory_poisoning_wrappers.c index 05cba18ee..7b48c7c95 100644 --- a/tests/src/psa_memory_poisoning_wrappers.c +++ b/tests/src/psa_memory_poisoning_wrappers.c @@ -4,7 +4,8 @@ * Copyright The Mbed TLS Contributors * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */ -#include "test/memory.h" +#include +#include #include "psa_crypto_invasive.h"