From 7658f503b630ac4234f5f38109127ff5e7bba2ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Nogueira?= Date: Wed, 27 May 2026 13:23:13 -0300 Subject: [PATCH] lemon: add missing arguments to prototypes These are no longer accepted under C23. --- src/lemon/lemon.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lemon/lemon.c b/src/lemon/lemon.c index bb8359fc..05dbc08f 100644 --- a/src/lemon/lemon.c +++ b/src/lemon/lemon.c @@ -168,12 +168,12 @@ static struct action *Action_new(void); static struct action *Action_sort(struct action *); /********** From the file "build.h" ************************************/ -void FindRulePrecedences(); -void FindFirstSets(); -void FindStates(); -void FindLinks(); -void FindFollowSets(); -void FindActions(); +void FindRulePrecedences(struct lemon *); +void FindFirstSets(struct lemon *); +void FindStates(struct lemon *); +void FindLinks(struct lemon *); +void FindFollowSets(struct lemon *); +void FindActions(struct lemon *); /********* From the file "configlist.h" *********************************/ void Configlist_init(void);