comparison src/tag.c @ 2087:3112fcc89238 v7.2.371

updated for version 7.2.371 Problem: Build problems on Tandem NonStop. Solution: A few changes to #ifdefs (Joachim Schmitz)
author Bram Moolenaar <bram@zimbu.org>
date Wed, 24 Feb 2010 14:47:08 +0100
parents c8f343a465a2
children 0c1e413c32f1
comparison
equal deleted inserted replaced
2086:c11845a465ae 2087:3112fcc89238
88 static char_u *tagmatchname = NULL; /* name of last used tag */ 88 static char_u *tagmatchname = NULL; /* name of last used tag */
89 89
90 /* 90 /*
91 * We use ftello() here, if available. It returns off_t instead of long, 91 * We use ftello() here, if available. It returns off_t instead of long,
92 * which helps if long is 32 bit and off_t is 64 bit. 92 * which helps if long is 32 bit and off_t is 64 bit.
93 * We assume that when fseeko() is available then ftello() is too.
93 */ 94 */
94 #ifdef HAVE_FTELLO 95 #ifdef HAVE_FSEEKO
95 # define ftell ftello 96 # define ftell ftello
96 #endif 97 #endif
97 98
98 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX) 99 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
99 /* 100 /*