mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
31 lines
1 KiB
Diff
31 lines
1 KiB
Diff
diff --git a/source/expr2.c b/source/expr2.c
|
|
index 8130919..b6c1aef 100644
|
|
--- a/source/expr2.c
|
|
+++ b/source/expr2.c
|
|
@@ -1192,7 +1192,7 @@ int lexerr (expr_info *c, char *format, ...)
|
|
* case 'operand' is set to 1. When an operand is lexed, then the next token
|
|
* is expected to be a binary operator, so 'operand' is set to 0.
|
|
*/
|
|
-__inline int check_implied_arg (expr_info *c)
|
|
+__inline static int check_implied_arg (expr_info *c)
|
|
{
|
|
if (c->operand == 2)
|
|
{
|
|
@@ -1205,7 +1205,7 @@ __inline int check_implied_arg (expr_info *c)
|
|
return c->operand;
|
|
}
|
|
|
|
-__inline TOKEN operator (expr_info *c, char *x, int y, TOKEN z)
|
|
+__inline static TOKEN operator (expr_info *c, char *x, int y, TOKEN z)
|
|
{
|
|
check_implied_arg(c);
|
|
if (c->operand)
|
|
@@ -1216,7 +1216,7 @@ __inline TOKEN operator (expr_info *c, char *x, int y, TOKEN z)
|
|
return z;
|
|
}
|
|
|
|
-__inline TOKEN unary (expr_info *c, char *x, int y, TOKEN z)
|
|
+__inline static TOKEN unary (expr_info *c, char *x, int y, TOKEN z)
|
|
{
|
|
if (!c->operand)
|
|
return lexerr(c, "An operator (%s) was found where "
|