summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPort.h
diff options
context:
space:
mode:
authordonal.k.fellows@manchester.ac.uk <dkf>2002-02-22 09:04:47 (GMT)
committerdonal.k.fellows@manchester.ac.uk <dkf>2002-02-22 09:04:47 (GMT)
commitfc6cdf006bdf503723d3ef534d084ec49003c70b (patch)
treeba6173acad2a1138f95ec9c9c72c0ccdea254d92 /unix/tclUnixPort.h
parent500f3b46e583306d911b0b03cdad31740cadb16d (diff)
downloadtcl-fc6cdf006bdf503723d3ef534d084ec49003c70b.zip
tcl-fc6cdf006bdf503723d3ef534d084ec49003c70b.tar.gz
tcl-fc6cdf006bdf503723d3ef534d084ec49003c70b.tar.bz2
Const-ifying declarations of strtoll/strtoull and new compat code.
Diffstat (limited to 'unix/tclUnixPort.h')
-rw-r--r--unix/tclUnixPort.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h
index 0b994f2..57d23f2 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.22 2002/02/16 01:17:36 hobbs Exp $
+ * RCS: @(#) $Id: tclUnixPort.h,v 1.23 2002/02/22 09:04:48 dkf Exp $
*/
#ifndef _TCLUNIXPORT
@@ -86,10 +86,10 @@ typedef off_t Tcl_SeekOffset;
#endif
#if !HAVE_STRTOLL && defined(TCL_WIDE_INT_TYPE)
-EXTERN Tcl_WideInt strtoll _ANSI_ARGS_((char *string, char **endPtr,
- int base));
-EXTERN Tcl_WideUInt strtoull _ANSI_ARGS_((char *string, char **endPtr,
- int base));
+EXTERN Tcl_WideInt strtoll _ANSI_ARGS_((CONST char *string,
+ char **endPtr, int base));
+EXTERN Tcl_WideUInt strtoull _ANSI_ARGS_((CONST char *string,
+ char **endPtr, int base));
#endif
#include <sys/file.h>