appveyor: make 32 bit build target XP + minor fixes
[fio.git] / oslib / asprintf.h
CommitLineData
44e8e956
BVA
1#ifndef FIO_ASPRINTF_H
2#define FIO_ASPRINTF_H
3
4#ifndef HAVE_VASPRINTF
5int vasprintf(char **strp, const char *fmt, va_list ap);
6#endif
7#ifndef HAVE_ASPRINTF
8int asprintf(char **strp, const char *fmt, ...);
9#endif
10
11#endif /* FIO_ASPRINTF_H */