diff options
author | dgp <dgp@noemail.net> | 2002-02-25 16:46:40 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2002-02-25 16:46:40 (GMT) |
commit | 2a65b2d6941fa6c054251e31fbdef99cc7d2beb8 (patch) | |
tree | 78dd9fb44a0b5886cfc2541bf34fb0c94966f202 /unix | |
parent | b866ed93f1aa6f5da8da7594f69f8b469d1b2143 (diff) | |
download | tcl-2a65b2d6941fa6c054251e31fbdef99cc7d2beb8.zip tcl-2a65b2d6941fa6c054251e31fbdef99cc7d2beb8.tar.gz tcl-2a65b2d6941fa6c054251e31fbdef99cc7d2beb8.tar.bz2 |
* unix/tclUnixPort.h: corrected strtoll prototype mismatch on Tru64.
FossilOrigin-Name: 7592be8e18393fda1b9f2489a0d0c73ab4344b12
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixPort.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index 57d23f2..d3d7a09 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.23 2002/02/22 09:04:48 dkf Exp $ + * RCS: @(#) $Id: tclUnixPort.h,v 1.24 2002/02/25 16:46:40 dgp Exp $ */ #ifndef _TCLUNIXPORT @@ -85,7 +85,7 @@ typedef off_t Tcl_SeekOffset; # define Tcl_PlatformLStat lstat #endif -#if !HAVE_STRTOLL && defined(TCL_WIDE_INT_TYPE) +#if !HAVE_STRTOLL && defined(TCL_WIDE_INT_TYPE) && !TCL_WIDE_INT_IS_LONG EXTERN Tcl_WideInt strtoll _ANSI_ARGS_((CONST char *string, char **endPtr, int base)); EXTERN Tcl_WideUInt strtoull _ANSI_ARGS_((CONST char *string, |