Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/mkdtemp @ 14730:f0a9a2cd267c
fclose: preserve fflush errors
Caught by gcc -Werror=unused-but-set-variable.
* lib/fclose.c (rpl_fclose): Don't lose fflush errors.
Reported by Jim Meyering.
Signed-off-by: Eric Blake <eblake@redhat.com>
author | Eric Blake <eblake@redhat.com> |
---|---|
date | Wed, 11 May 2011 11:35:06 -0600 |
parents | efab6978105e |
children | 731eb6ec9b71 |
rev | line source |
---|---|
4237
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 Description: |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
2 mkdtemp() function: create a private temporary directory. |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 Files: |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
5 lib/mkdtemp.c |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
6 m4/mkdtemp.m4 |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
7 |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 Depends-on: |
8192
b9003c1ee8fa
mkdtemp.h is replaced with <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
7588
diff
changeset
|
9 stdlib |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
11930
diff
changeset
|
10 stdint [test $HAVE_MKDTEMP = 0] |
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
11930
diff
changeset
|
11 tempname [test $HAVE_MKDTEMP = 0] |
4237
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
12 |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
13 configure.ac: |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
14 gt_FUNC_MKDTEMP |
8192
b9003c1ee8fa
mkdtemp.h is replaced with <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
7588
diff
changeset
|
15 gl_STDLIB_MODULE_INDICATOR([mkdtemp]) |
4237
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
16 |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
17 Makefile.am: |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
18 |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
19 Include: |
8192
b9003c1ee8fa
mkdtemp.h is replaced with <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents:
7588
diff
changeset
|
20 <stdlib.h> |
4237
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
21 |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4237
diff
changeset
|
22 License: |
11930
86a27b638664
Relicense mkdtemp under LGPLv2+.
Bruno Haible <bruno@clisp.org>
parents:
8192
diff
changeset
|
23 LGPLv2+ |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4237
diff
changeset
|
24 |
4237
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
25 Maintainer: |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
26 Bruno Haible |
723deab1223e
mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
27 |