Remove volatile from declaration

Use of volatile is more an internal implementation detail (ensuring
const-time) than part of the contract (the caller doesn't care about
volatile as such).

Signed-off-by: Janos Follath <janos.follath@arm.com>
diff --git a/library/bignum_core.h b/library/bignum_core.h
index 00c557b..92c8d47 100644
--- a/library/bignum_core.h
+++ b/library/bignum_core.h
@@ -665,7 +665,7 @@
  * \return        MBEDTLS_CT_FALSE if `A == 0`
  *                MBEDTLS_CT_TRUE  if `A != 0`.
  */
-mbedtls_ct_condition_t mbedtls_mpi_core_check_zero_ct(volatile const mbedtls_mpi_uint *A,
+mbedtls_ct_condition_t mbedtls_mpi_core_check_zero_ct(const mbedtls_mpi_uint *A,
                                                       size_t limbs);
 
 /**