bc: Add prototypes for param() and local() - sbase - suckless unix tools
(HTM) git clone git://git.suckless.org/sbase
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit b95368aa433853d7f9fd160add78be5835f561ef
(DIR) parent 98923f69a1bb852d7fcbf2146dec4a084874bf80
(HTM) Author: Roberto E. Vargas Caballero <k0ga@shike2.net>
Date: Fri, 28 Nov 2025 15:50:07 +0100
bc: Add prototypes for param() and local()
Diffstat:
M bc.y | 1 +
1 file changed, 1 insertion(+), 0 deletions(-)
---
(DIR) diff --git a/bc.y b/bc.y
@@ -39,6 +39,7 @@ static char *forcode(Macro *, char *, char *, char *, char *);
static char *whilecode(Macro *, char *, char *);
static char *ifcode(Macro *, char *, char *);
static char *funcode(Macro *, char *, char *, char *);
+static char *param(char *, char *), *local(char *, char *);
static Macro *define(char *, char *);
static char *retcode(char *);
static char *brkcode(void);