aboutsummaryrefslogtreecommitdiffstats
path: root/src/tls/libtommath.c
diff options
context:
space:
mode:
authorJouni Malinen <j@w1.fi>2011-11-18 21:53:36 +0200
committerJouni Malinen <j@w1.fi>2011-11-18 21:53:36 +0200
commit19df9b0761021e983e3e3ca0d65e143347028bd5 (patch)
treef67ad35ba67de613d138cbbcb92608b8033703be /src/tls/libtommath.c
parent373f6c721148387a67153edcb013ab52561fe13d (diff)
downloadexternal_wpa_supplicant_8_ti-19df9b0761021e983e3e3ca0d65e143347028bd5.zip
external_wpa_supplicant_8_ti-19df9b0761021e983e3e3ca0d65e143347028bd5.tar.gz
external_wpa_supplicant_8_ti-19df9b0761021e983e3e3ca0d65e143347028bd5.tar.bz2
Mark local functions static
These functions are not used outside the file in which they are defined. Signed-hostap: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'src/tls/libtommath.c')
-rw-r--r--src/tls/libtommath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/libtommath.c b/src/tls/libtommath.c
index 1c02167..7c9857f 100644
--- a/src/tls/libtommath.c
+++ b/src/tls/libtommath.c
@@ -2678,7 +2678,7 @@ mp_montgomery_setup (mp_int * n, mp_digit * rho)
*
* Based on Algorithm 14.32 on pp.601 of HAC.
*/
-int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho)
+static int fast_mp_montgomery_reduce (mp_int * x, mp_int * n, mp_digit rho)
{
int ix, res, olduse;
mp_word W[MP_WARRAY];