2014-07-29 02:26:15 +02:00
|
|
|
#include_next <stdio.h>
|
|
|
|
|
|
|
|
#ifndef LIBCRYPTOCOMPAT_STDIO_H
|
|
|
|
#define LIBCRYPTOCOMPAT_STDIO_H
|
|
|
|
|
2014-10-29 21:44:36 +01:00
|
|
|
#ifndef HAVE_ASPRINTF
|
2014-08-12 10:21:48 +02:00
|
|
|
#include <stdarg.h>
|
2014-07-29 02:26:15 +02:00
|
|
|
int vasprintf(char **str, const char *fmt, va_list ap);
|
|
|
|
int asprintf(char **str, const char *fmt, ...);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|