From 81cefed27ffcffa1e40ae0aaedf42496a7acd4eb Mon Sep 17 00:00:00 2001 From: Jaeden Amero Date: Mon, 25 Feb 2019 08:51:27 +0000 Subject: [PATCH] psa: Explicitly include platform_util.h crypto_extra.h has a dependency on platform_util.h for MBEDTLS_DEPRECATED_NUMERIC_CONSTANT. Make the dependency explicit by including platform_util.h. Although in most use cases the header should already be included by something else, it doesn't hurt to include it again and helps to clarify dependencies. --- include/psa/crypto_extra.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/psa/crypto_extra.h b/include/psa/crypto_extra.h index 86d9954ce..5dd47899e 100644 --- a/include/psa/crypto_extra.h +++ b/include/psa/crypto_extra.h @@ -30,6 +30,8 @@ #ifndef PSA_CRYPTO_EXTRA_H #define PSA_CRYPTO_EXTRA_H +#include "mbedtls/platform_util.h" + #ifdef __cplusplus extern "C" { #endif