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 /unix | |
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 'unix')
-rw-r--r-- | unix/tclUnixPort.h | 6 | ||||
-rw-r--r-- | unix/tclUnixTime.c | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index 46d14fa..d52b7d0 100644 --- a/unix/tclUnixPort.h +++ b/unix/tclUnixPort.h @@ -19,7 +19,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixPort.h,v 1.27.2.16 2006/09/07 08:50:36 vasiljevic Exp $ + * RCS: @(#) $Id: tclUnixPort.h,v 1.27.2.17 2007/04/21 19:52:15 kennykb Exp $ */ #ifndef _TCLUNIXPORT @@ -671,10 +671,10 @@ EXTERN void TclpMutexLock _ANSI_ARGS_((TclpMutex *mPtr)); EXTERN void TclpMutexUnlock _ANSI_ARGS_((TclpMutex *mPtr)); EXTERN Tcl_DirEntry * TclpReaddir(DIR *); #ifndef TclpLocaltime -EXTERN struct tm * TclpLocaltime(CONST TclpTime_t); +EXTERN struct tm * TclpLocaltime(TclpTime_t_CONST); #endif #ifndef TclpGmtime -EXTERN struct tm * TclpGmtime(CONST TclpTime_t); +EXTERN struct tm * TclpGmtime(TclpTime_t_CONST); #endif EXTERN char * TclpInetNtoa(struct in_addr); #define inet_ntoa(x) TclpInetNtoa(x) diff --git a/unix/tclUnixTime.c b/unix/tclUnixTime.c index b7ef888..e4ac865 100644 --- a/unix/tclUnixTime.c +++ b/unix/tclUnixTime.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixTime.c,v 1.15.2.5 2007/03/19 17:06:26 dgp Exp $ + * RCS: @(#) $Id: tclUnixTime.c,v 1.15.2.6 2007/04/21 19:52:15 kennykb Exp $ */ #include "tclInt.h" @@ -344,7 +344,7 @@ TclpStrftime(s, maxsize, format, t, useGMT) struct tm * TclpGmtime( tt ) - CONST TclpTime_t tt; + TclpTime_t_CONST tt; { CONST time_t *timePtr = (CONST time_t *) tt; /* Pointer to the number of seconds @@ -371,7 +371,7 @@ TclpGmtime( tt ) */ struct tm* TclpGmtime_unix( timePtr ) - CONST TclpTime_t timePtr; + TclpTime_t_CONST timePtr; { return TclpGmtime( timePtr ); } @@ -395,7 +395,7 @@ TclpGmtime_unix( timePtr ) struct tm * TclpLocaltime( tt ) - CONST TclpTime_t tt; + TclpTime_t_CONST tt; { CONST time_t *timePtr = (CONST time_t *) tt; /* Pointer to the number of seconds @@ -422,7 +422,7 @@ TclpLocaltime( tt ) */ struct tm* TclpLocaltime_unix( timePtr ) - CONST TclpTime_t timePtr; + TclpTime_t_CONST timePtr; { return TclpLocaltime( timePtr ); } |