diff options
author | davygrvy <davygrvy@pobox.com> | 2003-08-27 21:52:41 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2003-08-27 21:52:41 (GMT) |
commit | eefa813ecaadd254c41b53d04e8a3b0d86809a63 (patch) | |
tree | 78565365f1cd79ffc6a129e6f49b6e35a5794af5 /win/tclWinPort.h | |
parent | 4323e0f274bdfce2d3c219cd26c84783fb1902df (diff) | |
download | tcl-eefa813ecaadd254c41b53d04e8a3b0d86809a63.zip tcl-eefa813ecaadd254c41b53d04e8a3b0d86809a63.tar.gz tcl-eefa813ecaadd254c41b53d04e8a3b0d86809a63.tar.bz2 |
Added Open Watcom strictness about how the char type needs to be
signed by default.
Diffstat (limited to 'win/tclWinPort.h')
-rw-r--r-- | win/tclWinPort.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h index 59f58d4..1848e03 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.37 2003/08/27 19:41:49 davygrvy Exp $ + * RCS: @(#) $Id: tclWinPort.h,v 1.38 2003/08/27 21:52:41 davygrvy Exp $ */ #ifndef _TCLWINPORT @@ -398,6 +398,9 @@ * LPFN_* typedefs. */ # define HAVE_NO_LPFN_DECLS +# if !defined(__CHAR_SIGNED__) +# error "You must use the -j switch to ensure char is signed." +# endif #endif /* |