Differences From Artifact [61742fc4a9]:
- File libtommath/bn_mp_copy.c — part of check-in [27923399a3] at 2017-08-29 20:25:53 on branch libtommath-1.0.1 — libtommath 1.0.1 rc2, for test purposes only (user: jan.nijtmans size: 1477) [more...]
To Artifact [7b09b3734b]:
- File libtommath/bn_mp_copy.c — part of check-in [3617735687] at 2017-08-29 20:43:48 on branch libtommath-1.0.1 — Merge libtommath 1.0.1 final (user: jan.nijtmans size: 1458) [more...]
| ︙ | |||
59 60 61 62 63 64 65 | 59 60 61 62 63 64 65 66 67 68 | - - - + + + | /* copy used count and sign */ b->used = a->used; b->sign = a->sign; return MP_OKAY; } #endif |