These prototypes are all in libcompat.h, and as there is no need
for this file to include libcompat.h, the missing headers are
put into this file.
git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@839
64e312b2-a51f-0410-8e61-
82d0ca0eb02a
#endif /* HAVE_STDARG_H */
#if !HAVE_VASPRINTF
+int rpl_vasprintf(char **, const char *, va_list);
#if HAVE_STDLIB_H
#include <stdlib.h> /* For malloc(3). */
#endif /* HAVE_STDLIB_H */
#if !HAVE_ASPRINTF
#if HAVE_STDARG_H
int
+rpl_asprintf(char **ret, const char *format, ...);
+int
rpl_asprintf(char **ret, const char *format, ...)
#else
int
+rpl_asprintf(va_alist) va_dcl;
+int
rpl_asprintf(va_alist) va_dcl
#endif /* HAVE_STDARG_H */
{