From eb9790a503bde66f744ff06f51c209583798f0d9 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 16 May 2021 11:29:00 -0700 Subject: [PATCH] mark binary() static This function is unused outside of its containing file. Squashes a -Wmissing-prototypes warning. --- lib/gvpr/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gvpr/compile.c b/lib/gvpr/compile.c index c4c50a816..ca8cd2d3a 100644 --- a/lib/gvpr/compile.c +++ b/lib/gvpr/compile.c @@ -1874,7 +1874,7 @@ refval(Expr_t * pgm, Exnode_t * node, Exid_t * sym, Exref_t * ref, * Return -1 if operation cannot be done, 0 otherwise. * If arg is > 0, operation unnecessary; just report possibility. */ -int +static int binary(Expr_t * pg, Exnode_t * l, Exnode_t * ex, Exnode_t * r, int arg, Exdisc_t * disc) { -- 2.40.0