| 631 | */ |
| 632 | |
| 633 | gpre_rel* MET_make_relation(const SCHAR* name) |
| 634 | { |
| 635 | gpre_rel* relation = (gpre_rel*) MSC_alloc(REL_LEN); |
| 636 | relation->rel_symbol = MSC_symbol(SYM_relation, name, static_cast<USHORT>(strlen(name)), (gpre_ctx*) relation); |
| 637 | |
| 638 | return relation; |
| 639 | } |
| 640 | |
| 641 | |
| 642 | /*____________________________________________________________ |
no test coverage detected