blob: 70574806bc573d4b4d6208237f00c736215ad925 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef VASPRINTF_H
#define VASPRINTF_H
#include <config.h>
#ifndef HAVE_VASPRINTF
int _gnutls_vasprintf(char **strp, const char *fmt, va_list ap);
#define vasprintf _gnutls_vasprintf
#endif
#endif
|