fix non-void forward declarations as well

This commit is contained in:
Ricardo Luís Vaz Silva 2025-03-09 16:57:28 -03:00
parent ce18a556b6
commit 49e47fe81c

View file

@ -72,12 +72,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 *xp);
void FindFirstSets(struct lemon *lemp);
void FindStates(struct lemon *lemp);
void FindLinks(struct lemon *lemp);
void FindFollowSets(struct lemon *lemp);
void FindActions(struct lemon *lemp);
/********* From the file "configlist.h" *********************************/
void Configlist_init(void);