comparison src/os_msdos.c @ 8140:563c923b1584 v7.4.1364

commit https://github.com/vim/vim/commit/cf7164a088664961e7d70dd100c5874dc5ceb293 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 20 13:55:06 2016 +0100 patch 7.4.1364 Problem: The Win 16 code is not maintained and unused. Solution: Remove the Win 16 support.
author Christian Brabandt <cb@256bit.org>
date Sat, 20 Feb 2016 14:00:06 +0100
parents cf744110897d
children
comparison
equal deleted inserted replaced
8139:2b0d471e04f7 8140:563c923b1584
25 25
26 /* cproto fails on missing include files */ 26 /* cproto fails on missing include files */
27 #ifndef PROTO 27 #ifndef PROTO
28 # include <conio.h> 28 # include <conio.h>
29 #endif 29 #endif
30
31 /*
32 * MS-DOS only code, not used for Win16.
33 */
34 #ifndef WIN16
35
36 30
37 #ifndef PROTO 31 #ifndef PROTO
38 # include <bios.h> 32 # include <bios.h>
39 # ifdef DJGPP 33 # ifdef DJGPP
40 # include <dpmi.h> 34 # include <dpmi.h>
2848 } 2842 }
2849 2843
2850 #endif /* FEAT_CLIPBOARD */ 2844 #endif /* FEAT_CLIPBOARD */
2851 #endif /* DJGPP */ 2845 #endif /* DJGPP */
2852 2846
2853 /*
2854 * End of MS-DOS only code
2855 */
2856 #endif /* WIN16 */
2857
2858 /* common MS-DOS and Win16 code follows */ 2847 /* common MS-DOS and Win16 code follows */
2859 2848
2860 static int 2849 static int
2861 vim_chmod(char_u *name) 2850 vim_chmod(char_u *name)
2862 { 2851 {