1
0
forked from aniani/vim

updated for version 7.2.371

Problem:    Build problems on Tandem NonStop.
Solution:   A few changes to #ifdefs (Joachim Schmitz)
This commit is contained in:
Bram Moolenaar
2010-02-24 14:47:08 +01:00
parent f4d7f944ba
commit 25153e127d
8 changed files with 149 additions and 9 deletions

View File

@@ -90,8 +90,9 @@ static char_u *tagmatchname = NULL; /* name of last used tag */
/*
* We use ftello() here, if available. It returns off_t instead of long,
* which helps if long is 32 bit and off_t is 64 bit.
* We assume that when fseeko() is available then ftello() is too.
*/
#ifdef HAVE_FTELLO
#ifdef HAVE_FSEEKO
# define ftell ftello
#endif