| 564 | */ |
| 565 | |
| 566 | static RULE * global_rule( RULE * r ) |
| 567 | { |
| 568 | if ( r->module == root_module() ) |
| 569 | return r; |
| 570 | |
| 571 | { |
| 572 | OBJECT * const name = global_rule_name( r ); |
| 573 | RULE * const result = define_rule( r->module, name, root_module() ); |
| 574 | object_free( name ); |
| 575 | return result; |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | |
| 580 | /* |
no test coverage detected