summaryrefslogtreecommitdiffstats
path: root/generic/tcl.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-08-30 12:37:50 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-08-30 12:37:50 (GMT)
commitb49738ff138e13a39a594458fefc273272acffee (patch)
treef100736555d31d972ada62b12b8a189ba9c2253e /generic/tcl.h
parent1a00939829b0f8551c44af805ffd701f65c2a58b (diff)
downloadtcl-b49738ff138e13a39a594458fefc273272acffee.zip
tcl-b49738ff138e13a39a594458fefc273272acffee.tar.gz
tcl-b49738ff138e13a39a594458fefc273272acffee.tar.bz2
Tweak libtommath building, such that it doesn't depend on uint64_t any more. (handle mp_word in the same way as mp_digit)
Diffstat (limited to 'generic/tcl.h')
-rw-r--r--generic/tcl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index 6fa26f9..da9b292 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -2263,6 +2263,8 @@ typedef struct mp_int mp_int;
#define MP_INT_DECLARED
typedef unsigned int mp_digit;
#define MP_DIGIT_DECLARED
+typedef unsigned TCL_WIDE_INT_TYPE mp_word;
+#define MP_WORD_DECLARED
/*
*----------------------------------------------------------------------------