summaryrefslogtreecommitdiffstats
path: root/libtommath/tommath.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-08-29 21:27:56 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-08-29 21:27:56 (GMT)
commit032ab0fd5ca666fb1e3cbbbb31e69cef956f9a9b (patch)
treeee67e859ea6bbab8b920c951d04d986bc9b2d927 /libtommath/tommath.h
parentb37b7ded33f1772b457aee97908cff99b3573b12 (diff)
parent3a2a78a48a0eeea16928dca431306167ed6cddaa (diff)
downloadtcl-032ab0fd5ca666fb1e3cbbbb31e69cef956f9a9b.zip
tcl-032ab0fd5ca666fb1e3cbbbb31e69cef956f9a9b.tar.gz
tcl-032ab0fd5ca666fb1e3cbbbb31e69cef956f9a9b.tar.bz2
a few missing bits after previous commit
Diffstat (limited to 'libtommath/tommath.h')
-rw-r--r--libtommath/tommath.h4
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 */