summaryrefslogtreecommitdiff
path: root/src/os_vms.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-11-12 16:10:48 +0100
committerBram Moolenaar <Bram@vim.org>2014-11-12 16:10:48 +0100
commitb8e0bdbda377d0a3c3e24bea62503b9f95f8249a (patch)
tree9e0bb83cb9ca8cd34e3a878dfada15eed5d118bd /src/os_vms.c
parent3e9a1614966926a6067c977921d5aa270eba5da7 (diff)
downloadvim-git-b8e0bdbda377d0a3c3e24bea62503b9f95f8249a.tar.gz
updated for version 7.4.512v7.4.512
Problem: Cannot generate prototypes for Win32 files and VMS. Solution: Add typedefs and #ifdef
Diffstat (limited to 'src/os_vms.c')
-rw-r--r--src/os_vms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_vms.c b/src/os_vms.c
index 55876b27f..12eceedd0 100644
--- a/src/os_vms.c
+++ b/src/os_vms.c
@@ -12,7 +12,7 @@
#include "vim.h"
/* define _generic_64 for use in time functions */
-#ifndef VAX
+#if !defined(VAX) && !defined(PROTO)
# include <gen64def.h>
#else
/* based on Alpha's gen64def.h; the file is absent on VAX */