Mark internal function as static

This commit is contained in:
Darryl Green
2018-10-19 09:21:15 +01:00
parent 56d7cc472f
commit 94759f6593
+1 -1
View File
@@ -2142,7 +2142,7 @@ cleanup:
/*
* Pseudo-primality test: small factors, then Miller-Rabin
*/
int mpi_is_prime_internal( const mbedtls_mpi *X, int rounds,
static int mpi_is_prime_internal( const mbedtls_mpi *X, int rounds,
int (*f_rng)(void *, unsigned char *, size_t),
void *p_rng )
{