/
| 621 | |
| 622 | /*************************************************************************************/ |
| 623 | static PJ* skip_prep_fin(PJ *P) { |
| 624 | /************************************************************************************** |
| 625 | Skip prepare and finalize function for the various "helper operations" added to P when |
| 626 | in cs2cs compatibility mode. |
| 627 | **************************************************************************************/ |
| 628 | P->skip_fwd_prepare = 1; |
| 629 | P->skip_fwd_finalize = 1; |
| 630 | P->skip_inv_prepare = 1; |
| 631 | P->skip_inv_finalize = 1; |
| 632 | return P; |
| 633 | } |
| 634 | |
| 635 | /*************************************************************************************/ |
| 636 | static int cs2cs_emulation_setup (PJ *P) { |
no outgoing calls
no test coverage detected