diff 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
line wrap: on
line diff
--- a/src/tag.c
+++ b/src/tag.c
@@ -90,8 +90,9 @@ static char_u	*tagmatchname = NULL;	/* n
 /*
  * 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