| 3532 | // |
| 3533 | |
| 3534 | static void gen_variable(const act* action) |
| 3535 | { |
| 3536 | SCHAR s[MAX_REF_SIZE]; |
| 3537 | const ref* reference = (const ref*) action->act_object; |
| 3538 | printa("", "%s%s", (action->act_flags & ACT_first) ? COLUMN : CONTINUE, |
| 3539 | gen_name(s, reference, false)); |
| 3540 | |
| 3541 | fputs(CONTINUE, gpreGlob.out_file); |
| 3542 | } |
| 3543 | |
| 3544 | |
| 3545 | //____________________________________________________________ |
no test coverage detected