removed %define api.prefix in yacc eval_expr.y, use -p bison on command line

This commit is contained in:
stefan schippers 2025-02-12 02:11:47 +01:00
parent a559f84bc5
commit bd40674f34
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ expandlabel.c expandlabel.h: expandlabel.y
bison -d -o expandlabel.c expandlabel.y
eval_expr.c: eval_expr.y
bison -o eval_expr.c eval_expr.y
bison -p kk -o eval_expr.c eval_expr.y
parselabel.o: expandlabel.h

View File

@ -55,7 +55,7 @@ struct fn fn_array[]
};
%}
%define api.prefix {kk}
/* %define api.prefix {kk} */
%union {
int c;
double val; /* For returning numbers. */