comparison src/tag.c @ 2666:1a0d346695fa v7.3.085

updated for version 7.3.085 Problem: Inconsistency with preproc symbols. void * computation. Solution: Include vimio.h from vim.h. Add type cast.
author Bram Moolenaar <bram@vim.org>
date Fri, 17 Dec 2010 18:06:06 +0100
parents 7c2e6ba1d702
children d20d37ef86c8
comparison
equal deleted inserted replaced
2665:18061514324f 2666:1a0d346695fa
8 */ 8 */
9 9
10 /* 10 /*
11 * Code to handle tags and the tag stack 11 * Code to handle tags and the tag stack
12 */ 12 */
13
14 #if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
15 # include "vimio.h" /* for lseek(), must be before vim.h */
16 #endif
17 13
18 #include "vim.h" 14 #include "vim.h"
19 15
20 /* 16 /*
21 * Structure to hold pointers to various items in a tag line. 17 * Structure to hold pointers to various items in a tag line.