diff options
author | Chris Watkins <chris.watkins88@gmail.com> | 2014-04-22 22:49:52 -0700 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-28 07:43:57 -0300 |
commit | 9da32a1f78fe075663466ac1349cb1495420591f (patch) | |
tree | 2b41897e8d906d1061b84ecf3dbe6b35926ec55c /src/ex_cmds2.c | |
parent | 4e1b364a3e255742522d4d76c5ccddd7a36c1769 (diff) | |
download | rneovim-9da32a1f78fe075663466ac1349cb1495420591f.tar.gz rneovim-9da32a1f78fe075663466ac1349cb1495420591f.tar.bz2 rneovim-9da32a1f78fe075663466ac1349cb1495420591f.zip |
Remove code and checks for unsupported systems.
Remove remnants of support for systems including
__EMX__, MSDOS, OS2, AMIGA and MORPHOS.
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r-- | src/ex_cmds2.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index eee593c070..0148a7b6b2 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -2810,19 +2810,6 @@ void free_scriptnames(void) #if defined(USE_CR) || defined(PROTO) - -# if defined(__MSL__) && (__MSL__ >= 22) -/* - * Newer version of the Metrowerks library handle DOS and UNIX files - * without help. - * Test with earlier versions, MSL 2.2 is the library supplied with - * Codewarrior Pro 2. - */ -char *fgets_cr(char *s, int n, FILE *stream) -{ - return fgets(s, n, stream); -} -# else /* * Version of fgets() which also works for lines ending in a <CR> only * (Macintosh format). @@ -2855,7 +2842,6 @@ char *fgets_cr(char *s, int n, FILE *stream) return s; } -# endif #endif /* |