diff options
author | dgp <dgp@users.sourceforge.net> | 2015-03-20 19:57:13 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2015-03-20 19:57:13 (GMT) |
commit | ee09bf7f95bff9d60eea22a0611c8fb8cd63d39c (patch) | |
tree | ac7315cfce5cfddbd47ef45818a70c3338ff3661 /win | |
parent | df856f976bd0ae1e57e1b1c2ed112f918d4a64bc (diff) | |
parent | eb1bcbe68ddda0e199b55e34cf2b1360dbd89d59 (diff) | |
download | tcl-ee09bf7f95bff9d60eea22a0611c8fb8cd63d39c.zip tcl-ee09bf7f95bff9d60eea22a0611c8fb8cd63d39c.tar.gz tcl-ee09bf7f95bff9d60eea22a0611c8fb8cd63d39c.tar.bz2 |
Remove STRICT directive from public header. It does approximately nothing,
and doesn't belong in generic code.
Diffstat (limited to 'win')
-rw-r--r-- | win/tclAppInit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c index a6c1a67..e06eaf5 100644 --- a/win/tclAppInit.c +++ b/win/tclAppInit.c @@ -16,7 +16,9 @@ #include "tcl.h" #define WIN32_LEAN_AND_MEAN +#define STRICT /* See MSDN Article Q83456 */ #include <windows.h> +#undef STRICT #undef WIN32_LEAN_AND_MEAN #include <locale.h> #include <stdlib.h> |