diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-04-09 22:08:21 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-04-09 22:08:21 +0200 |
commit | de1502f2b48f77c98547a66b324e76be422228d3 (patch) | |
tree | 38264037e693eda0ec2cd4e843a8984c830371a5 /src/os_unix.h | |
parent | f6303878274b9aedfb9ac5b80d95002965093e5b (diff) | |
download | vim-git-de1502f2b48f77c98547a66b324e76be422228d3.tar.gz |
patch 7.4.692 for Problem: Defining SOLARIS for no good reason. (Danek Duvall)v7.4.692
Solution: Remove it.
Diffstat (limited to 'src/os_unix.h')
-rw-r--r-- | src/os_unix.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/os_unix.h b/src/os_unix.h index 4a353388c..4220534b9 100644 --- a/src/os_unix.h +++ b/src/os_unix.h @@ -65,13 +65,6 @@ #endif /* - * Sun defines FILE on SunOS 4.x.x, Solaris has a typedef for FILE - */ -#if defined(sun) && !defined(FILE) -# define SOLARIS -#endif - -/* * Using getcwd() is preferred, because it checks for a buffer overflow. * Don't use getcwd() on systems do use system("sh -c pwd"). There is an * autoconf check for this. |