diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-09-20 09:07:35 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-09-20 09:07:35 (GMT) |
commit | 65703d1f87d85eea842224137695c20c320c7bd7 (patch) | |
tree | 57406e965f588883b917e212fb93e93ac84f72cc /libtommath/bn_mp_sub_d.c | |
parent | f75f76c9d479632f92d722036fdb45311338021f (diff) | |
download | tcl-65703d1f87d85eea842224137695c20c320c7bd7.zip tcl-65703d1f87d85eea842224137695c20c320c7bd7.tar.gz tcl-65703d1f87d85eea842224137695c20c320c7bd7.tar.bz2 |
Further astyle formatting of libtommath. No functional changes.
Diffstat (limited to 'libtommath/bn_mp_sub_d.c')
-rw-r--r-- | libtommath/bn_mp_sub_d.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libtommath/bn_mp_sub_d.c b/libtommath/bn_mp_sub_d.c index e22c35c..4d66a90 100644 --- a/libtommath/bn_mp_sub_d.c +++ b/libtommath/bn_mp_sub_d.c @@ -16,8 +16,7 @@ */ /* single digit subtraction */ -int -mp_sub_d(const mp_int *a, mp_digit b, mp_int *c) +int mp_sub_d(const mp_int *a, mp_digit b, mp_int *c) { mp_digit *tmpa, *tmpc, mu; int res, ix, oldused; |