Better formatting of include guard comments

Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
Paul Elliott 2023-02-10 11:04:27 +00:00
parent 0290a76fc2
commit fe9e77ff7a

View File

@ -127,9 +127,9 @@ typedef struct {
/* Make the struct non-empty if algs not supported. */ /* Make the struct non-empty if algs not supported. */
unsigned MBEDTLS_PRIVATE(dummy); unsigned MBEDTLS_PRIVATE(dummy);
#endif /* MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || #endif /* defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) ||
* MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA && * defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA) &&
* MBEDTLS_ECP_RESTARTABLE */ * defined( MBEDTLS_ECP_RESTARTABLE ) */
} mbedtls_psa_sign_hash_interruptible_operation_t; } mbedtls_psa_sign_hash_interruptible_operation_t;
#if (defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \ #if (defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || \
@ -160,9 +160,9 @@ typedef struct {
/* Make the struct non-empty if algs not supported. */ /* Make the struct non-empty if algs not supported. */
unsigned MBEDTLS_PRIVATE(dummy); unsigned MBEDTLS_PRIVATE(dummy);
#endif /* MBEDTLS_PSA_BUILTIN_ALG_ECDSA) || #endif /* defined(MBEDTLS_PSA_BUILTIN_ALG_ECDSA) ||
* MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA && * defined(MBEDTLS_PSA_BUILTIN_ALG_DETERMINISTIC_ECDSA) &&
* MBEDTLS_ECP_RESTARTABLE */ * defined( MBEDTLS_ECP_RESTARTABLE ) */
} mbedtls_psa_verify_hash_interruptible_operation_t; } mbedtls_psa_verify_hash_interruptible_operation_t;