diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-03-29 12:16:28 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-03-29 12:16:28 (GMT) |
commit | 33d523b6274e003bc520d9d0497e24e85de7fae0 (patch) | |
tree | 1b89496b0aa7f00c62593edd50a6a0ad82684689 /doc/IntObj.3 | |
parent | c755d23a508df80984dc1755ea1c96af87f27425 (diff) | |
download | tcl-33d523b6274e003bc520d9d0497e24e85de7fae0.zip tcl-33d523b6274e003bc520d9d0497e24e85de7fae0.tar.gz tcl-33d523b6274e003bc520d9d0497e24e85de7fae0.tar.bz2 |
In comments and documentation, distinguish between __int64 (a Microsoft 64-bit integer type) and int64_t (C99 equivalent)
Diffstat (limited to 'doc/IntObj.3')
-rw-r--r-- | doc/IntObj.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/IntObj.3 b/doc/IntObj.3 index dc62642..2acb446 100644 --- a/doc/IntObj.3 +++ b/doc/IntObj.3 @@ -97,7 +97,7 @@ are provided by the C language standard. The \fBTcl_WideInt\fR type is a typedef defined to be whatever signed integral type covers at least the 64-bit integer range (-9223372036854775808 to 9223372036854775807). Depending on the platform and the C compiler, the actual type might be -\fBlong int\fR, \fBlong long int\fR, \fBint64\fR, or something else. +\fBlong int\fR, \fBlong long int\fR, \fB__int64\fR, or something else. The \fBmp_int\fR type is a multiple-precision integer type defined by the LibTomMath multiple-precision integer library. .PP |