commit | de5e2c219b99895445fb75ae3541ee69282a5846 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Nov 04 20:35:31 2016 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Nov 04 20:35:31 2016 +0100 |
tree | 66c568296d890abef12e5d04f7e62256e28b45e1 | |
parent | 91e44a3305ef6bf2d43496c351dcff0a45c6bfb8 [diff] [blame] |
patch 8.0.0059 Problem: Vim does not build on VMS systems. Solution: Various changes for VMS. (Zoltan Arpadffy)
diff --git a/src/macros.h b/src/macros.h index 691a819..5920b5d 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))