diff options
author | Stefan Hoffmann <stefan991@gmail.com> | 2014-05-02 18:25:49 +0200 |
---|---|---|
committer | Stefan Hoffmann <stefan991@gmail.com> | 2014-05-09 15:49:33 +0200 |
commit | a080819c3ef93c41a0bbd14b3c5f76d26bb9d404 (patch) | |
tree | 39dde46f7816129723ae92875db955f7d42d7406 /src/macros.h | |
parent | aff96730765a2fc347e30e474bc3049a85758b4d (diff) | |
download | rneovim-a080819c3ef93c41a0bbd14b3c5f76d26bb9d404.tar.gz rneovim-a080819c3ef93c41a0bbd14b3c5f76d26bb9d404.tar.bz2 rneovim-a080819c3ef93c41a0bbd14b3c5f76d26bb9d404.zip |
replaced mch_fstat() with os_file_get_info_fd()
Diffstat (limited to 'src/macros.h')
-rw-r--r-- | src/macros.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/macros.h b/src/macros.h index 5f7147be23..f016da484a 100644 --- a/src/macros.h +++ b/src/macros.h @@ -98,7 +98,6 @@ #define vim_isbreak(c) (breakat_flags[(char_u)(c)]) # define mch_fopen(n, p) fopen((n), (p)) -# define mch_fstat(n, p) fstat((n), (p)) # ifdef STAT_IGNORES_SLASH /* On Solaris stat() accepts "file/" as if it was "file". Return -1 if * the name ends in "/" and it's not a directory. */ |