blob: 402b11381a4369765ed8c0e5e6a4056db0522780 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
Bram Moolenaar9bf703d2019-11-30 19:44:38 +010010// Visual Studio 2005 has 'deprecated' many of the standard CRT functions
Bram Moolenaar362e1a32006-03-06 23:29:24 +000011#if _MSC_VER >= 1400
12# define _CRT_SECURE_NO_DEPRECATE
13# define _CRT_NONSTDC_NO_DEPRECATE
14#endif
15
Bram Moolenaar9bf703d2019-11-30 19:44:38 +010016// cproto fails on missing include files
Bram Moolenaar82881492012-11-20 16:53:39 +010017#ifndef PROTO
18# include <io.h>
19#endif