summaryrefslogtreecommitdiffstats
path: root/win/tclWinPort.h
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2002-02-22 09:04:47 (GMT)
committerdkf <dkf@noemail.net>2002-02-22 09:04:47 (GMT)
commit537531a663516e6aa97b77168ce813877f54cbdb (patch)
treeba6173acad2a1138f95ec9c9c72c0ccdea254d92 /win/tclWinPort.h
parent34ea1aa7d1c1f8cc57ac01f50ccf2185f6f79b6e (diff)
downloadtcl-537531a663516e6aa97b77168ce813877f54cbdb.zip
tcl-537531a663516e6aa97b77168ce813877f54cbdb.tar.gz
tcl-537531a663516e6aa97b77168ce813877f54cbdb.tar.bz2
Const-ifying declarations of strtoll/strtoull and new compat code.
FossilOrigin-Name: a2e0dc62c06e320020010e809ad83e5b4c075b5f
Diffstat (limited to 'win/tclWinPort.h')
-rw-r--r--win/tclWinPort.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h
index 193e366..c1b3189 100644
--- a/win/tclWinPort.h
+++ b/win/tclWinPort.h
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinPort.h,v 1.26 2002/02/15 14:28:51 dkf Exp $
+ * RCS: @(#) $Id: tclWinPort.h,v 1.27 2002/02/22 09:04:48 dkf Exp $
*/
#ifndef _TCLWINPORT
@@ -469,10 +469,10 @@ typedef int TclpMutex;
#endif /* TCL_THREADS */
#ifdef 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 /* TCL_WIDE_INT_TYPE */
#ifndef INVALID_SET_FILE_POINTER