diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-17 15:44:01 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-17 15:44:01 (GMT) |
commit | c5500b60350f48a5de2b1217fa38cc678511a329 (patch) | |
tree | b9bf2ce2d2aa700f1c289bf0e8d113ce4be5108e /generic/tclMain.c | |
parent | 0e057345422c670033e65792b8c69272862a5e74 (diff) | |
download | tcl-c5500b60350f48a5de2b1217fa38cc678511a329.zip tcl-c5500b60350f48a5de2b1217fa38cc678511a329.tar.gz tcl-c5500b60350f48a5de2b1217fa38cc678511a329.tar.bz2 |
Simplifications when assuming VS 2015 or later
Diffstat (limited to 'generic/tclMain.c')
-rw-r--r-- | generic/tclMain.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/generic/tclMain.c b/generic/tclMain.c index 13231b5..bb48dbb 100644 --- a/generic/tclMain.c +++ b/generic/tclMain.c @@ -64,11 +64,6 @@ NewNativeObj( * source directory to make their own modified versions). */ -#if defined _MSC_VER && _MSC_VER < 1900 -/* isatty is always defined on MSVC 14.0, but not necessarily as CRTIMPORT. */ -extern CRTIMPORT int isatty(int fd); -#endif - /* * The thread-local variables for this file's functions. */ |