comparison src/xdiff/xdiff.h @ 15517:2ad5f0ffaa2e v8.1.0766

patch 8.1.0766: various problems when using Vim on VMS commit https://github.com/vim/vim/commit/88c86eb751de9e7e410b405084d35b32fafc2a24 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 17 17:13:30 2019 +0100 patch 8.1.0766: various problems when using Vim on VMS Problem: Various problems when using Vim on VMS. Solution: Various fixes. Define long_long_T. (Zoltan Arpadffy)
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Jan 2019 17:15:06 +0100
parents 2b3ea3d42344
children 3be01cf0a632
comparison
equal deleted inserted replaced
15516:f9d855fe7971 15517:2ad5f0ffaa2e
106 106
107 typedef struct s_bdiffparam { 107 typedef struct s_bdiffparam {
108 long bsize; 108 long bsize;
109 } bdiffparam_t; 109 } bdiffparam_t;
110 110
111 #include "../vim.h" 111 #ifdef VMS
112 # include "[]vim.h"
113 #else
114 # include "../vim.h"
115 #endif
112 116
113 #define xdl_malloc(x) lalloc((x), TRUE) 117 #define xdl_malloc(x) lalloc((x), TRUE)
114 #define xdl_free(ptr) vim_free(ptr) 118 #define xdl_free(ptr) vim_free(ptr)
115 #define xdl_realloc(ptr,x) vim_realloc((ptr),(x)) 119 #define xdl_realloc(ptr,x) vim_realloc((ptr),(x))
116 120