+2007-04-28 Bruno Haible <bruno@clisp.org>
+
+ * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
+ fseeko and ftello.
+ Suggested by Eric Blake.
+
2007-04-28 Jim Meyering <jim@meyering.net>
Avoid false-negative in gl_STDINT_H's C99 conformance test.
fseeko (f, o, w))
#endif
+#if defined GNULIB_POSIXCHECK
+# ifndef fseek
+# define fseek(f,o,w) \
+ (GL_LINK_WARNING ("fseek cannot handle files larger than 4 GB " \
+ "on 32-bit platforms - " \
+ "use fseeko function for handling of large files"), \
+ fseek (f, o, w))
+# endif
+#endif
+
#if @GNULIB_FTELLO@
# if !@HAVE_FTELLO@
/* Assume 'off_t' is the same type as 'long'. */
ftello (f))
#endif
+#if defined GNULIB_POSIXCHECK
+# ifndef ftell
+# define ftell(f) \
+ (GL_LINK_WARNING ("ftell cannot handle files larger than 4 GB " \
+ "on 32-bit platforms - " \
+ "use ftello function for handling of large files"), \
+ ftell (f))
+# endif
+#endif
+
#if @GNULIB_FFLUSH@
# if @REPLACE_FFLUSH@
# define fflush rpl_fflush