Merge pull request #3814 from stevew817/bugfix/cpp_guard

Add missing bracket for CPP guard
This commit is contained in:
Gilles Peskine 2020-10-26 14:26:41 +01:00 committed by GitHub
commit eca1855147
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View file

@ -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 */

View file

@ -109,6 +109,12 @@
#include "mbedtls/memory_buffer_alloc.h"
#endif
#include "psa/crypto.h"
#include "psa/crypto_se_driver.h"
#include "psa/crypto_entropy_driver.h"
#include "psa/crypto_accel_driver.h"
#include "../library/psa_crypto_its.h"
int main()
{
mbedtls_platform_context *ctx = NULL;