diff options
author | das <das> | 2007-08-23 00:27:15 (GMT) |
---|---|---|
committer | das <das> | 2007-08-23 00:27:15 (GMT) |
commit | 7c455b1f18ed783206997f7a7e9a76ffc85d5c73 (patch) | |
tree | 0ed459b03f3912e32672b843890092373d00afa6 | |
parent | 5a8f916a31c803b4dcb12854463ed5227cbdf36f (diff) | |
download | tcl-7c455b1f18ed783206997f7a7e9a76ffc85d5c73.zip tcl-7c455b1f18ed783206997f7a7e9a76ffc85d5c73.tar.gz tcl-7c455b1f18ed783206997f7a7e9a76ffc85d5c73.tar.bz2 |
ensure WORDS_BIGENDIAN redefinition is consistent with autoconf definition
-rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index e050884..d0e49e1 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.332 2007/08/11 21:48:22 msofer Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.333 2007/08/23 00:27:15 das Exp $ */ #ifndef _TCLINT @@ -81,7 +81,7 @@ typedef int ptrdiff_t; # ifdef BIG_ENDIAN # if BYTE_ORDER == BIG_ENDIAN # undef WORDS_BIGENDIAN -# define WORDS_BIGENDIAN +# define WORDS_BIGENDIAN 1 # endif # endif # ifdef LITTLE_ENDIAN |