From: Loup Vaillant Date: Sun, 22 Jul 2018 21:15:10 +0000 (+0200) Subject: Forgot to static the fe_pow22523() function X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=34a2853d6d69c07b6d020584b2e1e4b7b4188cc6;p=Monocypher.git Forgot to static the fe_pow22523() function --- diff --git a/src/monocypher.c b/src/monocypher.c index 877bc3b..e6e1b0e 100644 --- a/src/monocypher.c +++ b/src/monocypher.c @@ -1187,7 +1187,7 @@ static void fe_invert(fe out, const fe z) } // This could be simplified, but it would be slower -void fe_pow22523(fe out, const fe z) +static void fe_pow22523(fe out, const fe z) { fe t0, t1, t2; fe_sq(t0, z);