diff options
-rw-r--r-- | pc.y | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -162,20 +162,20 @@ sub_prog_head ; arguments - :id_list ':' type - { - } - |param_list ';' id_list ':' type + :'(' param_list ')' { } + |/*empty*/ ; param_list :id_list ':' type { } - |param_list ':' type - ; + |param_list ';' id_list ':' type + { + } +; compound_statement :BEG opt_statements END |