Skip to content

Commit de4f7c2

Browse files
ericonrralphlange
authored andcommitted
lemon: add missing arguments to prototypes
These are no longer accepted under C23. (closes #12)
1 parent 18ed0f7 commit de4f7c2

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/lemon/lemon.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -168,12 +168,12 @@ static struct action *Action_new(void);
168168
static struct action *Action_sort(struct action *);
169169

170170
/********** From the file "build.h" ************************************/
171-
void FindRulePrecedences();
172-
void FindFirstSets();
173-
void FindStates();
174-
void FindLinks();
175-
void FindFollowSets();
176-
void FindActions();
171+
void FindRulePrecedences(struct lemon *);
172+
void FindFirstSets(struct lemon *);
173+
void FindStates(struct lemon *);
174+
void FindLinks(struct lemon *);
175+
void FindFollowSets(struct lemon *);
176+
void FindActions(struct lemon *);
177177

178178
/********* From the file "configlist.h" *********************************/
179179
void Configlist_init(void);

0 commit comments

Comments
 (0)