Merge branch 'asprintf' of https://github.com/bvanassche/fio
[fio.git] / oslib / asprintf.h
1 #ifndef FIO_ASPRINTF_H
2 #define FIO_ASPRINTF_H
3
4 #ifndef HAVE_VASPRINTF
5 int vasprintf(char **strp, const char *fmt, va_list ap);
6 #endif
7 #ifndef HAVE_ASPRINTF
8 int asprintf(char **strp, const char *fmt, ...);
9 #endif
10
11 #endif /* FIO_ASPRINTF_H */