From 34a2853d6d69c07b6d020584b2e1e4b7b4188cc6 Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Sun, 22 Jul 2018 23:15:10 +0200 Subject: [PATCH] Forgot to static the fe_pow22523() function --- src/monocypher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.3