diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-07-25 22:28:19 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-07-25 22:32:23 +0200 |
commit | 2731080212fad1430becae0cb56fe33238e7e24a (patch) | |
tree | 14de0a1eb8da856c567256a9b8acf6e5d0005c4f /src/nvim/macros.h | |
parent | bb3a0099c6909edc779cf9d2eff9656dab9a967e (diff) | |
download | rneovim-2731080212fad1430becae0cb56fe33238e7e24a.tar.gz rneovim-2731080212fad1430becae0cb56fe33238e7e24a.tar.bz2 rneovim-2731080212fad1430becae0cb56fe33238e7e24a.zip |
cleanup: remove mch_fopen in favor of os_fopen
Diffstat (limited to 'src/nvim/macros.h')
-rw-r--r-- | src/nvim/macros.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/macros.h b/src/nvim/macros.h index 5e1ccbc5e8..c758e000a9 100644 --- a/src/nvim/macros.h +++ b/src/nvim/macros.h @@ -86,8 +86,6 @@ #define READBIN "rb" #define APPENDBIN "ab" -# define mch_fopen(n, p) os_fopen((n), (p)) - /* mch_open_rw(): invoke os_open() with third argument for user R/W. */ #if defined(UNIX) /* open in rw------- mode */ # define mch_open_rw(n, f) os_open((n), (f), (mode_t)0600) |