summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rwxr-xr-xMODULES.html.sh3
-rw-r--r--modules/stdlib-safer26
3 files changed, 34 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4eb6872045..41b88d271f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-07-21 Eric Blake <ebb9@byu.net>
+
+ * modules/stdlib-safer: New file.
+ * MODULES.html.sh (File stream based Input/Output): Add
+ stdlib-safer.
+
2006-07-20 Bruno Haible <bruno@clisp.org>
* MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
diff --git a/MODULES.html.sh b/MODULES.html.sh
index 70200c242c..e27785b958 100755
--- a/MODULES.html.sh
+++ b/MODULES.html.sh
@@ -1933,6 +1933,7 @@ func_all_modules ()
func_module fpending
func_module closeout
func_module stdio-safer
+ func_module stdlib-safer
func_module getpass
func_module getpass-gnu
func_end_table
@@ -2092,7 +2093,7 @@ func_all_modules ()
func_end_table
element="Support for building documentation"
- func_section_wrap build_lib
+ func_section_wrap build_doc
func_wrap H2
func_echo "$element"
diff --git a/modules/stdlib-safer b/modules/stdlib-safer
new file mode 100644
index 0000000000..8f7cb3f000
--- /dev/null
+++ b/modules/stdlib-safer
@@ -0,0 +1,26 @@
+Description:
+File stream functions that avoid clobbering std{in,out,err}.
+
+Files:
+lib/stdlib--.h
+lib/stdlib-safer.h
+lib/mkstemp-safer.c
+m4/stdlib-safer.m4
+
+Depends-on:
+mkstemp
+unistd-safer
+
+configure.ac:
+gl_STDLIB_SAFER
+
+Makefile.am:
+
+Include:
+"stdlib-safer.h"
+
+License:
+GPL
+
+Maintainer:
+Paul Eggert, Jim Meyering