comparison src/term.c @ 23408:bdda90ed5f6c v8.2.2247

patch 8.2.2247: VMS: various smaller problems Commit: https://github.com/vim/vim/commit/467676d468cb10db78d79d5bd2139ded9f70d26f Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 30 13:14:45 2020 +0100 patch 8.2.2247: VMS: various smaller problems Problem: VMS: various smaller problems. Solution: Fix VMS building and other problems. (Zoltan Arpadffy)
author Bram Moolenaar <Bram@vim.org>
date Wed, 30 Dec 2020 13:15:05 +0100
parents 24ce202a7d68
children ae3421daa981
comparison
equal deleted inserted replaced
23407:675b60086d83 23408:bdda90ed5f6c
36 /* 36 /*
37 * A few linux systems define outfuntype in termcap.h to be used as the third 37 * A few linux systems define outfuntype in termcap.h to be used as the third
38 * argument for tputs(). 38 * argument for tputs().
39 */ 39 */
40 # ifdef VMS 40 # ifdef VMS
41 # define TPUTSFUNCAST 41 # define TPUTSFUNCAST (void (*)(unsigned int))
42 # else 42 # else
43 # ifdef HAVE_OUTFUNTYPE 43 # ifdef HAVE_OUTFUNTYPE
44 # define TPUTSFUNCAST (outfuntype) 44 # define TPUTSFUNCAST (outfuntype)
45 # else 45 # else
46 # define TPUTSFUNCAST (int (*)(int)) 46 # define TPUTSFUNCAST (int (*)(int))