annotate src/vimio.h @ 15430:d94901eeb762 v8.1.0723

patch 8.1.0723: cannot easily run specific test when in src/testdir commit https://github.com/vim/vim/commit/ec50401e1e1357a1340b3c92109fd4860e38a8ac Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 11 17:30:16 2019 +0100 patch 8.1.0723: cannot easily run specific test when in src/testdir Problem: Cannot run specific test when in src/testdir the same was as in the src directory. Solution: Move build rule to src/testdir/Makefile.
author Bram Moolenaar <Bram@vim.org>
date Fri, 11 Jan 2019 17:45:05 +0100
parents 4aead6a9b7a9
children 6e3dc2d630c2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10042
4aead6a9b7a9 commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents: 3927
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
714
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
2 *
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
4 *
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
8 */
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
9
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
10 /* Visual Studio 2005 has 'deprecated' many of the standard CRT functions */
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
11 #if _MSC_VER >= 1400
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
12 # define _CRT_SECURE_NO_DEPRECATE
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
13 # define _CRT_NONSTDC_NO_DEPRECATE
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
14 #endif
0f9f4761ad9c updated for version 7.0216
vimboss
parents:
diff changeset
15
3927
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 714
diff changeset
16 /* cproto fails on missing include files */
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 714
diff changeset
17 #ifndef PROTO
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 714
diff changeset
18 # include <io.h>
e6d8b44065bc updated for version 7.3.719
Bram Moolenaar <bram@vim.org>
parents: 714
diff changeset
19 #endif