| 729 | // ------------------------------------------------ |
| 730 | |
| 731 | void Int::Mod(Int *n) { |
| 732 | |
| 733 | Int r; |
| 734 | Div(n,&r); |
| 735 | Set(&r); |
| 736 | |
| 737 | } |
| 738 | |
| 739 | // ------------------------------------------------ |
| 740 |
nothing calls this directly
no outgoing calls
no test coverage detected