summaryrefslogtreecommitdiffstats
path: root/libtommath/tommath.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-18 10:53:45 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-18 10:53:45 (GMT)
commitd559284ebf166cecac30f194ced893fb1f652591 (patch)
tree3c339b65b307710ecd5718f5c886c321ae9716e5 /libtommath/tommath.h
parentc85162575b2a6ba6d8b7103a103d8724c2d51e03 (diff)
parent39a4505f7ed7cdb4cbd148aa62775e81ecbe5dc0 (diff)
downloadtcl-d559284ebf166cecac30f194ced893fb1f652591.zip
tcl-d559284ebf166cecac30f194ced893fb1f652591.tar.gz
tcl-d559284ebf166cecac30f194ced893fb1f652591.tar.bz2
Fix mp_cnt_lsb() signature, so it matches the signature used in Tcl
Diffstat (limited to 'libtommath/tommath.h')
-rw-r--r--libtommath/tommath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtommath/tommath.h b/libtommath/tommath.h
index 1793ed0..e696779 100644
--- a/libtommath/tommath.h
+++ b/libtommath/tommath.h
@@ -284,7 +284,7 @@ int mp_mod_2d(const mp_int *a, int b, mp_int *c);
int mp_2expt(mp_int *a, int b);
/* Counts the number of lsbs which are zero before the first zero bit */
-int mp_cnt_lsb(mp_int *a);
+int mp_cnt_lsb(const mp_int *a);
/* I Love Earth! */