mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-03-26 04:31:22 +00:00
fix non-void forward declarations as well
This commit is contained in:
parent
ce18a556b6
commit
49e47fe81c
1 changed files with 6 additions and 6 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue