diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-08-29 21:27:56 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-08-29 21:27:56 (GMT) |
| commit | f70c0ac860742c421db51aae08bb740c676ec90f (patch) | |
| tree | ee67e859ea6bbab8b920c951d04d986bc9b2d927 /libtommath/tommath.h | |
| parent | c3d5808cddc62d43c9687ec21bc1d662913c6c58 (diff) | |
| parent | 97d25d790293019ab4bbb60c7973037f9d815e25 (diff) | |
| download | tcl-f70c0ac860742c421db51aae08bb740c676ec90f.zip tcl-f70c0ac860742c421db51aae08bb740c676ec90f.tar.gz tcl-f70c0ac860742c421db51aae08bb740c676ec90f.tar.bz2 | |
a few missing bits after previous commit
Diffstat (limited to 'libtommath/tommath.h')
| -rw-r--r-- | libtommath/tommath.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libtommath/tommath.h b/libtommath/tommath.h index 775687b..68d59ec 100644 --- a/libtommath/tommath.h +++ b/libtommath/tommath.h @@ -62,7 +62,7 @@ extern "C" { #endif #elif defined(MP_64BIT) /* for GCC only on supported platforms */ - typedef ulong64 mp_digit; + typedef uint64_t mp_digit; #if defined(_WIN32) typedef unsigned __int128 mp_word; #elif defined(__GNUC__) @@ -79,7 +79,7 @@ extern "C" { /* this is to make porting into LibTomCrypt easier :-) */ typedef uint32_t mp_digit; - typedef ulong64 mp_word; + typedef uint64_t mp_word; #ifdef MP_31BIT /* this is an extension that uses 31-bit digits */ |
