summaryrefslogtreecommitdiff
path: root/src/fileio.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-15 12:54:18 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-15 12:54:18 +0100
commit95f0b6e5a5e5861da34cc064c601faf4eeed4ed6 (patch)
treee8b7414262ec23f9d5954f3008c936c8cf8c839a /src/fileio.c
parent3e2d1c8cd61ca073e680f3b221ce887e05ba39cf (diff)
downloadvim-git-95f0b6e5a5e5861da34cc064c601faf4eeed4ed6.tar.gz
patch 8.2.0009: VMS: terminal version doesn't buildv8.2.0009
Problem: VMS: terminal version doesn't build. Solution: Move MIN definition. Adjust #ifdefs. (Zoltan Arpadffy)
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 6600b5920..e35ce8c7b 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -2866,11 +2866,6 @@ check_for_cryptkey(
}
#endif // FEAT_CRYPT
-#if defined(VMS) && !defined(MIN)
-// Older DECC compiler for VAX doesn't define MIN()
-# define MIN(a, b) ((a) < (b) ? (a) : (b))
-#endif
-
/*
* Return TRUE if a file appears to be read-only from the file permissions.
*/