summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPort.h
diff options
context:
space:
mode:
authorkennykb <kennykb@noemail.net>2007-04-21 19:52:12 (GMT)
committerkennykb <kennykb@noemail.net>2007-04-21 19:52:12 (GMT)
commitb99cebf55ba968c6b669e9d2a11de1cf1d8ad1ee (patch)
tree385a4c1bcb6c38cfebf2b69a1d8c73e24eb9ee8c /unix/tclUnixPort.h
parent24280a507594ab75f1569d359b5ce106bce98fec (diff)
downloadtcl-b99cebf55ba968c6b669e9d2a11de1cf1d8ad1ee.zip
tcl-b99cebf55ba968c6b669e9d2a11de1cf1d8ad1ee.tar.gz
tcl-b99cebf55ba968c6b669e9d2a11de1cf1d8ad1ee.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. FossilOrigin-Name: c109ead7b6580bc2ed9f05a731312bd0eaa13272
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 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)