diff options
author | Kevin B Kenny <kennykb@acm.org> | 2007-04-21 19:52:12 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2007-04-21 19:52:12 (GMT) |
commit | 28e10d16ff23e12b9d930dcc0a73140af1265d93 (patch) | |
tree | 385a4c1bcb6c38cfebf2b69a1d8c73e24eb9ee8c /generic/tclIntDecls.h | |
parent | 9001e4a12a8cb6226719049f272585d73ca82f54 (diff) | |
download | tcl-28e10d16ff23e12b9d930dcc0a73140af1265d93.zip tcl-28e10d16ff23e12b9d930dcc0a73140af1265d93.tar.gz tcl-28e10d16ff23e12b9d930dcc0a73140af1265d93.tar.bz2 |
* generic/tclInt.decls: Yet another round of attempting
* generic/tclInt.h: to get the correct type signature
* unix/tclUnixPort.h: for TclpLocaltime and TclpGmtime.
* unix/tclUnixTime.c: CONST TclpTime_t is a 'time_t *CONST'
* win/tclWinTime.c: and not a 'CONST time_t*'!
* generic/tclIntDecls.h: [Bug 1677275]
* generic/tclIntPlatDecls.h: Regenerated.
Diffstat (limited to 'generic/tclIntDecls.h')
-rw-r--r-- | generic/tclIntDecls.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h index c761ae1..3660664 100644 --- a/generic/tclIntDecls.h +++ b/generic/tclIntDecls.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIntDecls.h,v 1.49.2.8 2005/03/15 16:29:53 kennykb Exp $ + * RCS: @(#) $Id: tclIntDecls.h,v 1.49.2.9 2007/04/21 19:52:14 kennykb Exp $ */ #ifndef _TCLINTDECLS @@ -512,9 +512,9 @@ EXTERN int TclUniCharMatch _ANSI_ARGS_(( /* Slot 180 is reserved */ /* Slot 181 is reserved */ /* 182 */ -EXTERN struct tm * TclpLocaltime _ANSI_ARGS_((CONST TclpTime_t clock)); +EXTERN struct tm * TclpLocaltime _ANSI_ARGS_((TclpTime_t_CONST clock)); /* 183 */ -EXTERN struct tm * TclpGmtime _ANSI_ARGS_((CONST TclpTime_t clock)); +EXTERN struct tm * TclpGmtime _ANSI_ARGS_((TclpTime_t_CONST clock)); /* Slot 184 is reserved */ /* Slot 185 is reserved */ /* Slot 186 is reserved */ @@ -743,8 +743,8 @@ typedef struct TclIntStubs { void *reserved179; void *reserved180; void *reserved181; - struct tm * (*tclpLocaltime) _ANSI_ARGS_((CONST TclpTime_t clock)); /* 182 */ - struct tm * (*tclpGmtime) _ANSI_ARGS_((CONST TclpTime_t clock)); /* 183 */ + struct tm * (*tclpLocaltime) _ANSI_ARGS_((TclpTime_t_CONST clock)); /* 182 */ + struct tm * (*tclpGmtime) _ANSI_ARGS_((TclpTime_t_CONST clock)); /* 183 */ void *reserved184; void *reserved185; void *reserved186; |