vasnprintf, u*-asnprintf tests: Add test of huge %ls arguments.
[gnulib.git] / modules / stdarg
blob98668cfba10c5ceb80686459f7cc26d29a2f7806
1 Description:
2 An <stdarg.h> that conforms to C99.
4 Files:
5 lib/stdarg.in.h
6 m4/stdarg.m4
8 Depends-on:
9 gen-header
10 include_next
12 configure.ac-early:
13 dnl Some compilers (e.g., AIX 5.3 cc) need to be in c99 mode
14 dnl for the builtin va_copy to work.  gl_PROG_CC_C99 arranges for this.
15 gl_PROG_CC_C99
17 configure.ac:
18 gl_STDARG_H
19 gl_CONDITIONAL_HEADER([stdarg.h])
20 AC_PROG_MKDIR_P
22 Makefile.am:
23 BUILT_SOURCES += $(STDARG_H)
25 # We need the following in order to create <stdarg.h> when the system
26 # doesn't have one that works with the given compiler.
27 if GL_GENERATE_STDARG_H
28 stdarg.h: stdarg.in.h $(top_builddir)/config.status
29 @NMD@   $(AM_V_GEN)$(MKDIR_P) '%reldir%'
30         $(gl_V_at)$(SED_HEADER_STDOUT) \
31               -e 's|@''GUARD_PREFIX''@|${gl_include_guard_prefix}|g' \
32               -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
33               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
34               -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
35               -e 's|@''NEXT_STDARG_H''@|$(NEXT_STDARG_H)|g' \
36               $(srcdir)/stdarg.in.h > $@-t
37         $(AM_V_at)mv $@-t $@
38 else
39 stdarg.h: $(top_builddir)/config.status
40         rm -f $@
41 endif
42 MOSTLYCLEANFILES += stdarg.h stdarg.h-t
44 Include:
45 <stdarg.h>
47 License:
48 LGPLv2+
50 Maintainer:
51 all