1
0
forked from aniani/vim

patch 8.2.2247: VMS: various smaller problems

Problem:    VMS: various smaller problems.
Solution:   Fix VMS building and other problems. (Zoltan Arpadffy)
This commit is contained in:
Bram Moolenaar
2020-12-30 13:14:45 +01:00
parent 4d8c96d466
commit 467676d468
9 changed files with 56 additions and 32 deletions

View File

@@ -158,8 +158,8 @@
# define mch_access(n, p) access(vms_fixfilename(n), (p))
// see mch_open() comment
# define mch_fopen(n, p) fopen(vms_fixfilename(n), (p))
# define mch_fstat(n, p) fstat(vms_fixfilename(n), (p))
// VMS does not have lstat()
# define mch_fstat(n, p) fstat((n), (p))
# undef HAVE_LSTAT // VMS does not have lstat()
# define mch_stat(n, p) stat(vms_fixfilename(n), (p))
# define mch_rmdir(n) rmdir(vms_fixfilename(n))
#else