diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-11-01 11:25:03 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-11-01 11:25:03 (GMT) |
commit | 01c6f7705f0b241490d171673c2b3073083ce9cc (patch) | |
tree | 11f35292c0d26cdfb032dfc6a376818ad8f923a9 /generic | |
parent | 493585e80285a37fffbfa04f560a2d37a94d3322 (diff) | |
parent | d5c3b7ac251d7793f9aff83b47608bf578aceb5f (diff) | |
download | tcl-01c6f7705f0b241490d171673c2b3073083ce9cc.zip tcl-01c6f7705f0b241490d171673c2b3073083ce9cc.tar.gz tcl-01c6f7705f0b241490d171673c2b3073083ce9cc.tar.bz2 |
Re-base to core-8-branch
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclBasic.c | 2 | ||||
-rw-r--r-- | generic/tclBinary.c | 2 | ||||
-rw-r--r-- | generic/tclDictObj.c | 2 | ||||
-rw-r--r-- | generic/tclExecute.c | 2 | ||||
-rw-r--r-- | generic/tclInt.h | 1 | ||||
-rw-r--r-- | generic/tclObj.c | 2 | ||||
-rw-r--r-- | generic/tclScan.c | 2 | ||||
-rw-r--r-- | generic/tclStrToD.c | 2 | ||||
-rw-r--r-- | generic/tclStringObj.c | 2 | ||||
-rw-r--r-- | generic/tclTest.c | 1 | ||||
-rw-r--r-- | generic/tclTestObj.c | 2 | ||||
-rw-r--r-- | generic/tclTomMathInterface.c | 2 | ||||
-rw-r--r-- | generic/tclTomMathStubLib.c | 1 | ||||
-rw-r--r-- | generic/tclUtil.c | 2 |
14 files changed, 13 insertions, 12 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 59f656a..05999c6 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -20,7 +20,7 @@ #include "tclInt.h" #include "tclOOInt.h" #include "tclCompile.h" -#include "tommath.h" +#include "tclTomMath.h" #include <math.h> #include <assert.h> diff --git a/generic/tclBinary.c b/generic/tclBinary.c index e28535e..ea8e204 100644 --- a/generic/tclBinary.c +++ b/generic/tclBinary.c @@ -12,7 +12,7 @@ */ #include "tclInt.h" -#include "tommath.h" +#include "tclTomMath.h" #include <math.h> #include <assert.h> diff --git a/generic/tclDictObj.c b/generic/tclDictObj.c index 083af70..5c6cb52 100644 --- a/generic/tclDictObj.c +++ b/generic/tclDictObj.c @@ -11,7 +11,7 @@ */ #include "tclInt.h" -#include "tommath.h" +#include "tclTomMath.h" #include <assert.h> /* diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 1bcedff..a2e9401 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -18,7 +18,7 @@ #include "tclInt.h" #include "tclCompile.h" #include "tclOOInt.h" -#include "tommath.h" +#include "tclTomMath.h" #include <math.h> #include <assert.h> diff --git a/generic/tclInt.h b/generic/tclInt.h index 790eba1..af59ae1 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -5079,7 +5079,6 @@ typedef struct NRE_callback { #include "tclIntDecls.h" #include "tclIntPlatDecls.h" -#include "tclTomMathDecls.h" #if !defined(USE_TCL_STUBS) && !defined(TCL_MEM_DEBUG) #define Tcl_AttemptAlloc(size) TclpAlloc(size) diff --git a/generic/tclObj.c b/generic/tclObj.c index 954c648..e488edd 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.c @@ -15,7 +15,7 @@ */ #include "tclInt.h" -#include "tommath.h" +#include "tclTomMath.h" #include <math.h> #include <assert.h> diff --git a/generic/tclScan.c b/generic/tclScan.c index f481cc9..8f2c892 100644 --- a/generic/tclScan.c +++ b/generic/tclScan.c @@ -10,7 +10,7 @@ */ #include "tclInt.h" -#include "tommath.h" +#include "tclTomMath.h" /* * Flag values used by Tcl_ScanObjCmd. diff --git a/generic/tclStrToD.c b/generic/tclStrToD.c index 866ee10..5477868 100644 --- a/generic/tclStrToD.c +++ b/generic/tclStrToD.c @@ -14,7 +14,7 @@ */ #include "tclInt.h" -#include "tommath.h" +#include "tclTomMath.h" #include <math.h> /* diff --git a/generic/tclStringObj.c b/generic/tclStringObj.c index 6b83c66..eed49b1 100644 --- a/generic/tclStringObj.c +++ b/generic/tclStringObj.c @@ -35,7 +35,7 @@ */ #include "tclInt.h" -#include "tommath.h" +#include "tclTomMath.h" #include "tclStringRep.h" #include "assert.h" diff --git a/generic/tclTest.c b/generic/tclTest.c index 73ce5d9..403b0a9 100644 --- a/generic/tclTest.c +++ b/generic/tclTest.c @@ -20,6 +20,7 @@ # define USE_TCL_STUBS #endif #include "tclInt.h" +#include "tclTomMath.h" #include "tclOO.h" #include <math.h> diff --git a/generic/tclTestObj.c b/generic/tclTestObj.c index cc54f24..65a8887 100644 --- a/generic/tclTestObj.c +++ b/generic/tclTestObj.c @@ -18,7 +18,7 @@ # define USE_TCL_STUBS #endif #include "tclInt.h" -#include "tommath.h" +#include "tclTomMath.h" #include "tclStringRep.h" diff --git a/generic/tclTomMathInterface.c b/generic/tclTomMathInterface.c index 589599e..d4f7084 100644 --- a/generic/tclTomMathInterface.c +++ b/generic/tclTomMathInterface.c @@ -13,7 +13,7 @@ */ #include "tclInt.h" -#include "tommath.h" +#include "tclTomMath.h" MODULE_SCOPE const TclTomMathStubs tclTomMathStubs; diff --git a/generic/tclTomMathStubLib.c b/generic/tclTomMathStubLib.c index 715904c..7bebe12 100644 --- a/generic/tclTomMathStubLib.c +++ b/generic/tclTomMathStubLib.c @@ -12,6 +12,7 @@ */ #include "tclInt.h" +#include "tclTomMath.h" MODULE_SCOPE const TclTomMathStubs *tclTomMathStubsPtr; diff --git a/generic/tclUtil.c b/generic/tclUtil.c index 9216380..659796e 100644 --- a/generic/tclUtil.c +++ b/generic/tclUtil.c @@ -15,7 +15,7 @@ #include "tclInt.h" #include "tclParse.h" #include "tclStringTrim.h" -#include "tommath.h" +#include "tclTomMath.h" #include <math.h> /* |