Fixes a bug with multiple function arguments.
This commit is contained in:
parent
bf6d91dc4e
commit
736fd7303c
1 changed files with 1 additions and 1 deletions
|
@ -347,7 +347,7 @@ decls: /* EMPTY */ { $$ = NULL; }
|
||||||
|
|
||||||
/* Declarations that have no ';' at the end. */
|
/* Declarations that have no ';' at the end. */
|
||||||
declsn: one_decl { $$ = $1; }
|
declsn: one_decl { $$ = $1; }
|
||||||
| declsn ';' one_decl {
|
| one_decl ';' declsn {
|
||||||
$$ = $1;
|
$$ = $1;
|
||||||
$$->aux2 = $3;
|
$$->aux2 = $3;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue