gnulib-tool.py: Fix formatting of error message in last commit.
[gnulib.git] / modules / fclose
blob0ef34bdfd9cc73872b960bfd9d2d472e74025ea8
1 Description:
2 fclose() function: close a stream.
4 Files:
5 lib/fclose.c
6 m4/fclose.m4
8 Depends-on:
9 stdio
10 close           [test $REPLACE_FCLOSE = 1]
11 fflush          [test $REPLACE_FCLOSE = 1]
12 freading        [test $REPLACE_FCLOSE = 1]
13 lseek           [test $REPLACE_FCLOSE = 1]
14 msvc-inval      [test $REPLACE_FCLOSE = 1]
15 # The code of fclose does not need to call fopen. But when gcc's '-fanalyzer'
16 # option is in use and stdio.h does '#define fclose rpl_fclose', stdio.h also
17 # needs to do '#define fopen rpl_fopen', otherwise a warning may result.
18 fopen           [test $REPLACE_FCLOSE = 1]
20 configure.ac:
21 gl_FUNC_FCLOSE
22 gl_CONDITIONAL([GL_COND_OBJ_FCLOSE], [test $REPLACE_FCLOSE = 1])
23 gl_STDIO_MODULE_INDICATOR([fclose])
25 Makefile.am:
26 if GL_COND_OBJ_FCLOSE
27 lib_SOURCES += fclose.c
28 endif
30 Include:
31 <stdio.h>
33 License:
34 LGPLv2+
36 Maintainer:
37 all