2014-07-28 19:26:15 -05:00
|
|
|
#include_next <stdio.h>
|
|
|
|
|
|
|
|
#ifndef LIBCRYPTOCOMPAT_STDIO_H
|
|
|
|
#define LIBCRYPTOCOMPAT_STDIO_H
|
|
|
|
|
|
|
|
#ifdef NO_ASPRINTF
|
2014-08-12 17:21:48 +09:00
|
|
|
#include <stdarg.h>
|
2014-07-28 19:26:15 -05:00
|
|
|
int vasprintf(char **str, const char *fmt, va_list ap);
|
|
|
|
int asprintf(char **str, const char *fmt, ...);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|