From de5e2c219b99895445fb75ae3541ee69282a5846 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 4 Nov 2016 20:35:31 +0100 Subject: patch 8.0.0059 Problem: Vim does not build on VMS systems. Solution: Various changes for VMS. (Zoltan Arpadffy) --- src/macros.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/macros.h') 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)) -- cgit v1.2.1