diff options
author | Stefan Hoffmann <stefan991@gmail.com> | 2014-03-16 17:45:25 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-03 10:30:03 -0300 |
commit | 5a2c9e123e4f42a037dbd652c6c42cae943a5654 (patch) | |
tree | f8fb3908300aa9ed5154d0273f4b69351e959a2c /src/vim.h | |
parent | f762a9e195cdd1db3d57561a5e82a1ea6799d8ba (diff) | |
download | rneovim-5a2c9e123e4f42a037dbd652c6c42cae943a5654.tar.gz rneovim-5a2c9e123e4f42a037dbd652c6c42cae943a5654.tar.bz2 rneovim-5a2c9e123e4f42a037dbd652c6c42cae943a5654.zip |
remove mch_access macro as it is only used in fs.c
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -1016,13 +1016,6 @@ typedef enum { # define O_NOFOLLOW 0 #endif -#ifndef W_OK -# define W_OK 2 /* for systems that don't have W_OK in unistd.h */ -#endif -#ifndef R_OK -# define R_OK 4 /* for systems that don't have R_OK in unistd.h */ -#endif - /* * defines to avoid typecasts from (char_u *) to (char *) and back * (vim_strchr() and vim_strrchr() are now in alloc.c) |