diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-03-31 00:01:14 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-03-31 00:01:14 (GMT) |
| commit | e7b51dbcc4d500bab4393a16a6f8ae9b3e1234c5 (patch) | |
| tree | ca67b0e6840e6db998bb988f63c76804badb7f14 /generic/tclTomMath.h | |
| parent | 39770bc9819326b059ba8df05e8a9adc5ba1ee48 (diff) | |
| download | tcl-e7b51dbcc4d500bab4393a16a6f8ae9b3e1234c5.zip tcl-e7b51dbcc4d500bab4393a16a6f8ae9b3e1234c5.tar.gz tcl-e7b51dbcc4d500bab4393a16a6f8ae9b3e1234c5.tar.bz2 | |
Make a start, upgrading to libtommath 1.3
Diffstat (limited to 'generic/tclTomMath.h')
| -rw-r--r-- | generic/tclTomMath.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclTomMath.h b/generic/tclTomMath.h index 79899e7..00b6503 100644 --- a/generic/tclTomMath.h +++ b/generic/tclTomMath.h @@ -1019,13 +1019,13 @@ mp_err mp_log_u32(const mp_int *a, unsigned int base, unsigned int *c) MP_WUR; /* c = a**b */ /* -mp_err mp_expt_u32(const mp_int *a, unsigned int b, mp_int *c) MP_WUR; +mp_err mp_expt_n(const mp_int *a, int b, mp_int *c) MP_WUR; */ /* -MP_DEPRECATED(mp_expt_u32) mp_err mp_expt_d(const mp_int *a, mp_digit b, mp_int *c) MP_WUR; +MP_DEPRECATED(mp_expt_n) mp_err mp_expt_d(const mp_int *a, mp_digit b, mp_int *c) MP_WUR; */ /* -MP_DEPRECATED(mp_expt_u32) mp_err mp_expt_d_ex(const mp_int *a, mp_digit b, mp_int *c, int fast) MP_WUR; +MP_DEPRECATED(mp_expt_n) mp_err mp_expt_d_ex(const mp_int *a, mp_digit b, mp_int *c, int fast) MP_WUR; */ /* ---> radix conversion <--- */ |
