From 8c31025310b2d2d8eced26ce4cc3bcfbfa58e7de Mon Sep 17 00:00:00 2001 From: Steven Cooreman Date: Thu, 22 Oct 2020 10:43:45 +0200 Subject: [PATCH] Add missing bracket for CPP guard Signed-off-by: Steven Cooreman --- library/psa_crypto_its.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/library/psa_crypto_its.h b/library/psa_crypto_its.h index 93c4ce981..b671d63a5 100644 --- a/library/psa_crypto_its.h +++ b/library/psa_crypto_its.h @@ -142,4 +142,8 @@ psa_status_t psa_its_get_info(psa_storage_uid_t uid, */ psa_status_t psa_its_remove(psa_storage_uid_t uid); +#ifdef __cplusplus +} +#endif + #endif /* PSA_CRYPTO_ITS_H */