1 #ifndef VASPRINTF_H
2 #define VASPRINTF_H
3 #include <config.h>
4 #include <string.h>
5 
6 #ifndef HAVE_VASPRINTF
7 
8 int _ocserv_vasprintf(char **strp, const char *fmt, va_list ap);
9 #define vasprintf _ocserv_vasprintf
10 
11 #endif
12 
13 #endif
14