annotate modules/vdprintf @ 17259:bc20efc34eba octave-stable

branch to handle patches for Octave stable
author John W. Eaton <jwe@octave.org>
date Thu, 03 Jan 2013 14:26:52 -0500
parents efab6978105e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11033
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 Description:
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 vdprintf() function: print formatted output to a file descriptor
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 Files:
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 lib/vdprintf.c
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 m4/vdprintf.m4
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8 Depends-on:
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 stdio
14683
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 11033
diff changeset
10 vasnprintf [test $ac_cv_func_vdprintf = no || test $REPLACE_VDPRINTF = 1]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 11033
diff changeset
11 full-write [test $ac_cv_func_vdprintf = no || test $REPLACE_VDPRINTF = 1]
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 11033
diff changeset
12 errno [test $ac_cv_func_vdprintf = no || test $REPLACE_VDPRINTF = 1]
11033
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 configure.ac:
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 gl_FUNC_VDPRINTF
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16 gl_STDIO_MODULE_INDICATOR([vdprintf])
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18 Makefile.am:
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 Include:
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 <stdio.h>
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23 License:
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 LGPL
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26 Maintainer:
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27 Bruno Haible
049c445485ee New modules 'vdprintf', 'vdprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28