Merge pull request #3814 from stevew817/bugfix/cpp_guard
Add missing bracket for CPP guard
This commit is contained in:
commit
eca1855147
2 changed files with 10 additions and 0 deletions
|
@ -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 */
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue