diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-11-04 20:35:31 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-11-04 20:35:31 +0100 |
commit | de5e2c219b99895445fb75ae3541ee69282a5846 (patch) | |
tree | 66c568296d890abef12e5d04f7e62256e28b45e1 /src/macros.h | |
parent | 91e44a3305ef6bf2d43496c351dcff0a45c6bfb8 (diff) | |
download | vim-git-de5e2c219b99895445fb75ae3541ee69282a5846.tar.gz |
patch 8.0.0059v8.0.0059
Problem: Vim does not build on VMS systems.
Solution: Various changes for VMS. (Zoltan Arpadffy)
Diffstat (limited to 'src/macros.h')
-rw-r--r-- | src/macros.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/macros.h b/src/macros.h index 691a819b0..5920b5dc7 100644 --- a/src/macros.h +++ b/src/macros.h @@ -177,6 +177,7 @@ # define mch_fstat(n, p) fstat(vms_fixfilename(n), (p)) /* VMS does not have lstat() */ # define mch_stat(n, p) stat(vms_fixfilename(n), (p)) +# define mch_rmdir(n) rmdir(vms_fixfilename(n)) #else # ifndef WIN32 # define mch_access(n, p) access((n), (p)) |