| 939 | } |
| 940 | |
| 941 | void expand_rules() |
| 942 | { |
| 943 | maxrules += 100; |
| 944 | plhs = RENEW(plhs, maxrules, bucket *); |
| 945 | if (plhs == 0) no_space(); |
| 946 | rprec = RENEW(rprec, maxrules, Yshort); |
| 947 | if (rprec == 0) no_space(); |
| 948 | rassoc = RENEW(rassoc, maxrules, char); |
| 949 | if (rassoc == 0) no_space(); |
| 950 | } |
| 951 | |
| 952 | /* set in copy_args and incremented by the various routines that will rescan |
| 953 | ** the argument list as appropriate */ |
no test coverage detected