diff options
author | Kevin B Kenny <kennykb@acm.org> | 2004-05-17 14:26:31 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2004-05-17 14:26:31 (GMT) |
commit | 8766610e300113748a8573b3c1460d0e1bc290de (patch) | |
tree | 636791149a751acb57bd43a77003dc5fe427a49f /unix/tclUnixPort.h | |
parent | 968dc28ac11aed57f46489d6182f3942666eec9e (diff) | |
download | tcl-8766610e300113748a8573b3c1460d0e1bc290de.zip tcl-8766610e300113748a8573b3c1460d0e1bc290de.tar.gz tcl-8766610e300113748a8573b3c1460d0e1bc290de.tar.bz2 |
* generic/tclInt.decls: Restored TclpTime_t kludge to all
* generic/tclIntPlatDecls.h: places where it appeared before the
* unix/tclUnixPort.h changes of 14 May, because use of
* unix/tclUnixTime.h native time_t in its place requires
* win/tclWinTime.h: the 8.5 header reforms. [Bug #955146]
Diffstat (limited to 'unix/tclUnixPort.h')
-rw-r--r-- | unix/tclUnixPort.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index c183985..0c1d9b7 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.3 2004/05/14 21:41:12 kennykb Exp $ + * RCS: @(#) $Id: tclUnixPort.h,v 1.27.2.4 2004/05/17 14:26:50 kennykb Exp $ */ #ifndef _TCLUNIXPORT @@ -565,10 +565,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 time_t *); +EXTERN struct tm * TclpLocaltime(CONST TclpTime_t); #endif #ifndef TclpGmtime -EXTERN struct tm * TclpGmtime(CONST time_t *); +EXTERN struct tm * TclpGmtime(CONST TclpTime_t); #endif EXTERN char * TclpInetNtoa(struct in_addr); #define readdir(x) TclpReaddir(x) |