summaryrefslogtreecommitdiffstats
path: root/generic/tclIntDecls.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-02-18 11:31:11 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-02-18 11:31:11 (GMT)
commit0d15664cbdafeb59a53986a6e646b79f7e5124da (patch)
tree4bdf91ec9d33355c6244ece15f779e618e18b57d /generic/tclIntDecls.h
parentcdfb697e13091bb9f205d581b83f1c5854be98da (diff)
downloadtcl-0d15664cbdafeb59a53986a6e646b79f7e5124da.zip
tcl-0d15664cbdafeb59a53986a6e646b79f7e5124da.tar.gz
tcl-0d15664cbdafeb59a53986a6e646b79f7e5124da.tar.bz2
Change (internal) signatures for TclpGetClicks/TclpGetSeconds to use "unsigned long long" in stead of Tcl_WideUInt as return value.
Diffstat (limited to 'generic/tclIntDecls.h')
-rw-r--r--generic/tclIntDecls.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h
index 2969f27..23cf3e6 100644
--- a/generic/tclIntDecls.h
+++ b/generic/tclIntDecls.h
@@ -186,9 +186,9 @@ EXTERN void * TclpAlloc(size_t size);
/* 74 */
EXTERN void TclpFree(void *ptr);
/* 75 */
-EXTERN Tcl_WideUInt TclpGetClicks(void);
+EXTERN unsigned long long TclpGetClicks(void);
/* 76 */
-EXTERN Tcl_WideUInt TclpGetSeconds(void);
+EXTERN unsigned long long TclpGetSeconds(void);
/* Slot 77 is reserved */
/* Slot 78 is reserved */
/* Slot 79 is reserved */
@@ -663,8 +663,8 @@ typedef struct TclIntStubs {
void (*reserved72)(void);
void (*reserved73)(void);
void (*tclpFree) (void *ptr); /* 74 */
- Tcl_WideUInt (*tclpGetClicks) (void); /* 75 */
- Tcl_WideUInt (*tclpGetSeconds) (void); /* 76 */
+ unsigned long long (*tclpGetClicks) (void); /* 75 */
+ unsigned long long (*tclpGetSeconds) (void); /* 76 */
void (*reserved77)(void);
void (*reserved78)(void);
void (*reserved79)(void);