lemon: make some functions static.

Change-Id: I41a78d6cb87223d13854ca4aad4ffdf70daecaf3
Reviewed-on: https://code.wireshark.org/review/26687
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Dario Lombardo 2018-04-04 10:41:37 +02:00 committed by Anders Broman
parent 8131922b26
commit 60d5edb41c
1 changed files with 2 additions and 2 deletions

View File

@ -791,7 +791,7 @@ PRIVATE int acttab_insert(acttab *p, int makeItSafe) {
** Return the size of the action table without the trailing syntax error
** entries.
*/
int acttab_action_size(acttab *p) {
static int acttab_action_size(acttab *p) {
int n = p->nAction;
while (n>0 && p->aAction[n - 1].lookahead<0) { n--; }
return n;
@ -3143,7 +3143,7 @@ PRIVATE FILE *file_open(
/* Print the text of a rule
*/
void rule_print(FILE *out, struct rule *rp) {
static void rule_print(FILE *out, struct rule *rp) {
int i, j;
fprintf(out, "%s", rp->lhs->name);
/* if( rp->lhsalias ) fprintf(out,"(%s)",rp->lhsalias); */