ftello: Provide a non-inline replacement of ftell().
[gnulib.git] / modules / ftello
1 Description:
2 ftello() function: Retrieve the position of a FILE stream.
3
4 Files:
5 lib/ftello.c
6 lib/stdio-impl.h
7 m4/fseeko.m4
8 m4/ftello.m4
9
10 Depends-on:
11 stdio
12 extensions
13 lseek           [test $HAVE_FTELLO = 0 || test $REPLACE_FTELLO = 1]
14 # Just to guarantee consistency between ftell() and ftello().
15 ftell
16
17 configure.ac-early:
18 AC_REQUIRE([AC_FUNC_FSEEKO])
19
20 configure.ac:
21 gl_FUNC_FTELLO
22 if test $HAVE_FTELLO = 0 || test $REPLACE_FTELLO = 1; then
23   AC_LIBOBJ([ftello])
24 fi
25 gl_STDIO_MODULE_INDICATOR([ftello])
26
27 Makefile.am:
28
29 Include:
30 <stdio.h>
31
32 License:
33 LGPLv2+
34
35 Maintainer:
36 Bruno Haible
37