summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPort.h
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2008-05-02 10:27:03 (GMT)
committerdkf <dkf@noemail.net>2008-05-02 10:27:03 (GMT)
commit3a6f388db483516535cc4015ff7252ca64a280ec (patch)
treea2961d8a6ed11aa358d492acf28db69f5b9ea4a0 /unix/tclUnixPort.h
parent3241dd8431b925f618db4959dc2f593aaabd34d2 (diff)
downloadtcl-3a6f388db483516535cc4015ff7252ca64a280ec.zip
tcl-3a6f388db483516535cc4015ff7252ca64a280ec.tar.gz
tcl-3a6f388db483516535cc4015ff7252ca64a280ec.tar.bz2
More elimination of pre-C89-isms.
FossilOrigin-Name: 27caec3459c6d0a42da22078c41eb35bf4661ebf
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 2da95b5..f925b49 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.65 2008/03/11 22:26:27 das Exp $
+ * RCS: @(#) $Id: tclUnixPort.h,v 1.66 2008/05/02 10:27:04 dkf Exp $
*/
#ifndef _TCLUNIXPORT
@@ -595,8 +595,8 @@ typedef int socklen_t;
#define TclpExit exit
#ifdef TCL_THREADS
-EXTERN struct tm * TclpLocaltime(CONST time_t *);
-EXTERN struct tm * TclpGmtime(CONST time_t *);
+EXTERN struct tm * TclpLocaltime(const time_t *);
+EXTERN struct tm * TclpGmtime(const time_t *);
EXTERN char * TclpInetNtoa(struct in_addr);
/* #define localtime(x) TclpLocaltime(x)
* #define gmtime(x) TclpGmtime(x) */