summaryrefslogtreecommitdiffstats
path: root/generic/tclTomMath.decls
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-11-15 10:09:11 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-11-15 10:09:11 (GMT)
commite5b1e20b49d4610ec84dc2da862b19d6119452d4 (patch)
tree132b4831c95ba4f1dce118cf44d2790feb4548e8 /generic/tclTomMath.decls
parentc28a047f8ac27cc47e0e47578bddc491c72bd9ae (diff)
parente00ef49560bb5bd4349d017887c7cd5a2d0ba38e (diff)
downloadtcl-e5b1e20b49d4610ec84dc2da862b19d6119452d4.zip
tcl-e5b1e20b49d4610ec84dc2da862b19d6119452d4.tar.gz
tcl-e5b1e20b49d4610ec84dc2da862b19d6119452d4.tar.bz2
Merge 8.6.
Also fix the use of WUR (warn unused result) in libtommath function signatures: this cannot be used in combination with "deprecated" or "nostub"
Diffstat (limited to 'generic/tclTomMath.decls')
-rw-r--r--generic/tclTomMath.decls4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTomMath.decls b/generic/tclTomMath.decls
index 964b5a7..547604b 100644
--- a/generic/tclTomMath.decls
+++ b/generic/tclTomMath.decls
@@ -75,7 +75,7 @@ declare 16 {
mp_err MP_WUR TclBN_mp_div_2d(const mp_int *a, int b, mp_int *q, mp_int *r)
}
declare 17 {deprecated {is private function in libtommath}} {
- mp_err MP_WUR TclBN_mp_div_3(const mp_int *a, mp_int *q, unsigned int *r)
+ mp_err TclBN_mp_div_3(const mp_int *a, mp_int *q, unsigned int *r)
}
declare 18 {
void TclBN_mp_exch(mp_int *a, mp_int *b)
@@ -144,7 +144,7 @@ declare 39 {
void TclBN_mp_set(mp_int *a, unsigned int b)
}
declare 40 {nostub {is private function in libtommath}} {
- mp_err MP_WUR TclBN_mp_sqr(const mp_int *a, mp_int *b)
+ mp_err TclBN_mp_sqr(const mp_int *a, mp_int *b)
}
declare 41 {
mp_err MP_WUR TclBN_mp_sqrt(const mp_int *a, mp_int *b)