summaryrefslogtreecommitdiffstats
path: root/generic/tclIntPlatDecls.h
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2007-04-21 19:52:12 (GMT)
committerKevin B Kenny <kennykb@acm.org>2007-04-21 19:52:12 (GMT)
commit28e10d16ff23e12b9d930dcc0a73140af1265d93 (patch)
tree385a4c1bcb6c38cfebf2b69a1d8c73e24eb9ee8c /generic/tclIntPlatDecls.h
parent9001e4a12a8cb6226719049f272585d73ca82f54 (diff)
downloadtcl-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/tclIntPlatDecls.h')
-rw-r--r--generic/tclIntPlatDecls.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclIntPlatDecls.h b/generic/tclIntPlatDecls.h
index e5a3ca0..671e6c7 100644
--- a/generic/tclIntPlatDecls.h
+++ b/generic/tclIntPlatDecls.h
@@ -9,7 +9,7 @@
* Copyright (c) 1998-1999 by Scriptics Corporation.
* All rights reserved.
*
- * RCS: @(#) $Id: tclIntPlatDecls.h,v 1.19.2.6 2004/10/28 16:06:49 kennykb Exp $
+ * RCS: @(#) $Id: tclIntPlatDecls.h,v 1.19.2.7 2007/04/21 19:52:14 kennykb Exp $
*/
#ifndef _TCLINTPLATDECLS
@@ -63,9 +63,9 @@ EXTERN TclFile TclpCreateTempFile _ANSI_ARGS_((
EXTERN Tcl_DirEntry * TclpReaddir _ANSI_ARGS_((DIR * dir));
/* 11 */
EXTERN struct tm * TclpLocaltime_unix _ANSI_ARGS_((
- CONST TclpTime_t clock));
+ TclpTime_t_CONST clock));
/* 12 */
-EXTERN struct tm * TclpGmtime_unix _ANSI_ARGS_((CONST TclpTime_t clock));
+EXTERN struct tm * TclpGmtime_unix _ANSI_ARGS_((TclpTime_t_CONST clock));
/* 13 */
EXTERN char * TclpInetNtoa _ANSI_ARGS_((struct in_addr addr));
#endif /* UNIX */
@@ -233,8 +233,8 @@ typedef struct TclIntPlatStubs {
int (*tclUnixWaitForFile) _ANSI_ARGS_((int fd, int mask, int timeout)); /* 8 */
TclFile (*tclpCreateTempFile) _ANSI_ARGS_((CONST char * contents)); /* 9 */
Tcl_DirEntry * (*tclpReaddir) _ANSI_ARGS_((DIR * dir)); /* 10 */
- struct tm * (*tclpLocaltime_unix) _ANSI_ARGS_((CONST TclpTime_t clock)); /* 11 */
- struct tm * (*tclpGmtime_unix) _ANSI_ARGS_((CONST TclpTime_t clock)); /* 12 */
+ struct tm * (*tclpLocaltime_unix) _ANSI_ARGS_((TclpTime_t_CONST clock)); /* 11 */
+ struct tm * (*tclpGmtime_unix) _ANSI_ARGS_((TclpTime_t_CONST clock)); /* 12 */
char * (*tclpInetNtoa) _ANSI_ARGS_((struct in_addr addr)); /* 13 */
#endif /* UNIX */
#ifdef __WIN32__