summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPort.h
diff options
context:
space:
mode:
authorkennykb <kennykb@noemail.net>2004-05-17 14:26:30 (GMT)
committerkennykb <kennykb@noemail.net>2004-05-17 14:26:30 (GMT)
commitb495802f9b37989b07aae71897e4791b0576906a (patch)
tree636791149a751acb57bd43a77003dc5fe427a49f /unix/tclUnixPort.h
parent4fa69e70fd0d81ab6985e7a90e4a07e83de98065 (diff)
downloadtcl-b495802f9b37989b07aae71897e4791b0576906a.zip
tcl-b495802f9b37989b07aae71897e4791b0576906a.tar.gz
tcl-b495802f9b37989b07aae71897e4791b0576906a.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] FossilOrigin-Name: 23544a04acf874fd6bb7713a65d633fb0d84d351
Diffstat (limited to 'unix/tclUnixPort.h')
-rw-r--r--unix/tclUnixPort.h6
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)