From 9da32a1f78fe075663466ac1349cb1495420591f Mon Sep 17 00:00:00 2001 From: Chris Watkins Date: Tue, 22 Apr 2014 22:49:52 -0700 Subject: Remove code and checks for unsupported systems. Remove remnants of support for systems including __EMX__, MSDOS, OS2, AMIGA and MORPHOS. --- src/os_unix.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/os_unix.c') diff --git a/src/os_unix.c b/src/os_unix.c index 8293e6508f..b2f0df988b 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -10,7 +10,6 @@ /* * os_unix.c -- code for all flavors of Unix (BSD, SYSV, SVR4, POSIX, ...) - * Also for OS/2, using the excellent EMX package!!! * Also for BeOS and Atari MiNT. * * A lot of this file was originally written by Juergen Weigert and later @@ -903,10 +902,6 @@ int mch_get_shellsize() long columns = 0; char_u *p; - /* - * For OS/2 use _scrsize(). - */ - /* * 1. try using an ioctl. It is the most accurate method. * @@ -1027,9 +1022,6 @@ int flags; /* EW_* flags */ bool dir; char_u *extra_shell_arg = NULL; ShellOpts shellopts = kShellOptExpand | kShellOptSilent; - /* - * This is the non-OS/2 implementation (really Unix). - */ int j; char_u *tempname; char_u *command; -- cgit