Merge pull request #1066 from esdrubal/bug19313
[mono.git] / eglib / src / vasprintf.h
1 #ifndef __VASPRINTF_H
2 #define __VASPRINTF_H
3
4 #include <stdarg.h>
5 #include <config.h>
6
7 #ifndef HAVE_VASPRINTF
8 int vasprintf(char **ret, const char *fmt, va_list ap);
9 #endif
10
11 #endif /* __VASPRINTF_H */