diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-06-26 10:12:17 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-06-26 10:12:17 (GMT) |
commit | e8d619b292256c1d44b578c2d54319527e4c5d23 (patch) | |
tree | ea9b46a1c9e90c3711a4b86a6279dba4ebd696cb /libtommath | |
parent | be1a8384ef0cb9fea37a20be396287a596c049ae (diff) | |
parent | 1b53ef3bbd2bd4139a0fbbeaa493a2d4562b9825 (diff) | |
download | tcl-e8d619b292256c1d44b578c2d54319527e4c5d23.zip tcl-e8d619b292256c1d44b578c2d54319527e4c5d23.tar.gz tcl-e8d619b292256c1d44b578c2d54319527e4c5d23.tar.bz2 |
Merge 8.7
Diffstat (limited to 'libtommath')
-rw-r--r-- | libtommath/tommath.h | 5 | ||||
-rw-r--r-- | libtommath/tommath_private.h | 8 |
2 files changed, 2 insertions, 11 deletions
diff --git a/libtommath/tommath.h b/libtommath/tommath.h index 4bd8f6c..a235210 100644 --- a/libtommath/tommath.h +++ b/libtommath/tommath.h @@ -4,10 +4,7 @@ #ifndef BN_H_ #define BN_H_ -#if !defined(MP_NO_STDINT) && !defined(_STDINT_H) && !defined(_STDINT_H_) \ - && !defined(__CLANG_STDINT_H) && !defined(_STDINT) -# include <stdint.h> -#endif +#include <stdint.h> #include <stddef.h> #include <limits.h> diff --git a/libtommath/tommath_private.h b/libtommath/tommath_private.h index 5123f53..f5ee285 100644 --- a/libtommath/tommath_private.h +++ b/libtommath/tommath_private.h @@ -4,13 +4,7 @@ #ifndef TOMMATH_PRIV_H_ #define TOMMATH_PRIV_H_ -#ifdef MP_NO_STDINT -#ifdef HAVE_STDINT_H -# include <stdint.h> -#else -# include "../compat/stdint.h" -#endif -#endif +#include <stdint.h> #include "tclTomMath.h" #include "tommath_class.h" |