diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2008-05-02 10:27:04 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2008-05-02 10:27:04 (GMT) |
| commit | 9f62b4c3bc6f741a9a72d4ec1af0ed933c981120 (patch) | |
| tree | a2961d8a6ed11aa358d492acf28db69f5b9ea4a0 /unix/tclUnixPort.h | |
| parent | dc7eb56dbeb345da2f193d9e353b86d97adef446 (diff) | |
| download | tcl-9f62b4c3bc6f741a9a72d4ec1af0ed933c981120.zip tcl-9f62b4c3bc6f741a9a72d4ec1af0ed933c981120.tar.gz tcl-9f62b4c3bc6f741a9a72d4ec1af0ed933c981120.tar.bz2 | |
More elimination of pre-C89-isms.
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 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) */ |
