diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-18 10:53:45 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-18 10:53:45 (GMT) |
commit | d559284ebf166cecac30f194ced893fb1f652591 (patch) | |
tree | 3c339b65b307710ecd5718f5c886c321ae9716e5 /generic | |
parent | c85162575b2a6ba6d8b7103a103d8724c2d51e03 (diff) | |
parent | 39a4505f7ed7cdb4cbd148aa62775e81ecbe5dc0 (diff) | |
download | tcl-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 'generic')
-rw-r--r-- | generic/tclTomMath.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclTomMath.h b/generic/tclTomMath.h index 690cd80..001019c 100644 --- a/generic/tclTomMath.h +++ b/generic/tclTomMath.h @@ -15,7 +15,6 @@ #ifndef BN_H_ #define BN_H_ -#include "tclInt.h" #include "tclTomMathDecls.h" #ifndef MODULE_SCOPE #define MODULE_SCOPE extern @@ -360,7 +359,7 @@ 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! */ |