diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2001-10-22 10:15:02 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2001-10-22 10:15:02 (GMT) |
commit | 59e7387cb0fbdb077f5cbcea8dbc1ffaaad29dc2 (patch) | |
tree | 1dfc6a25a59046d25ca43ac0eb6031572f28cce2 | |
parent | 9141461126fa7fb180325e9a3a674211e8d84d4a (diff) | |
download | tcl-59e7387cb0fbdb077f5cbcea8dbc1ffaaad29dc2.zip tcl-59e7387cb0fbdb077f5cbcea8dbc1ffaaad29dc2.tar.gz tcl-59e7387cb0fbdb077f5cbcea8dbc1ffaaad29dc2.tar.bz2 |
Conditional-define INVALID_SET_FILE_POINTER for VC5
-rw-r--r-- | win/tclWinPort.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h index 0098842..2d3d1e8 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.22.2.1 2001/10/18 09:03:59 dkf Exp $ + * RCS: @(#) $Id: tclWinPort.h,v 1.22.2.2 2001/10/22 10:15:02 dkf Exp $ */ #ifndef _TCLWINPORT @@ -471,6 +471,10 @@ EXTERN Tcl_WideUInt strtoull _ANSI_ARGS_((char *string, char **endPtr, int base)); #endif /* TCL_WIDE_INT_TYPE */ +#ifndef INVALID_SET_FILE_POINTER +#define INVALID_SET_FILE_POINTER 0xFFFFFFFF +#endif + #include "tclPlatDecls.h" #include "tclIntPlatDecls.h" |