annotate modules/obstack-printf-posix @ 14276:6b7046963230

di-set, ino-map: new modules, from coreutils * lib/di-set.c: New file. * lib/di-set.h: Likewise. * lib/ino-map.c: Likewise. * lib/ino-map.h: Likewise. * modules/di-set: Likewise. * modules/di-set-tests: Likewise. * modules/ino-map: Likewise. * modules/ino-map-tests: Likewise. * tests/test-di-set.c: Likewise. * tests/test-ino-map.c: Likewise.
author Jim Meyering <meyering@redhat.com>
date Mon, 07 Feb 2011 16:01:24 +0100
parents be869a242af0
children 1754adc5fd88
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10205
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
1 Description:
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
2 POSIX formatted printing into an obstack.
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
3
13187
be869a242af0 Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents: 10206
diff changeset
4 Comment:
be869a242af0 Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents: 10206
diff changeset
5 This module should not be used as a dependency from a test module,
be869a242af0 Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents: 10206
diff changeset
6 otherwise when this module occurs as a tests-related module, it will
be869a242af0 Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents: 10206
diff changeset
7 have side effects on the compilation of the 'vasnprintf' module, if
be869a242af0 Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents: 10206
diff changeset
8 that module occurs among the main modules in lib/.
be869a242af0 Fix side effects from tests-related modules.
Bruno Haible <bruno@clisp.org>
parents: 10206
diff changeset
9
10205
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
10 Files:
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
11 m4/obstack-printf.m4
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
12 m4/obstack-printf-posix.m4
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
13 lib/obstack_printf.c
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
14
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
15 Depends-on:
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
16 obstack
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
17 stdio
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
18 vasnprintf-posix
10206
927afe014a7d Fix various problems in 'obstack-printf' module.
Bruno Haible <bruno@clisp.org>
parents: 10205
diff changeset
19 extensions
10205
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
20
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
21 configure.ac:
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
22 gl_FUNC_OBSTACK_PRINTF_POSIX
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
23 gl_STDIO_MODULE_INDICATOR([obstack-printf-posix])
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
24
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
25 Makefile.am:
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
26
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
27 Include:
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
28 <stdio.h>
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
29
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
30 License:
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
31 GPL
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
32
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
33 Maintainer:
3384541effec Add obstack-printf and obstack-printf-posix modules.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
34 Eric Blake