t/zbd: avoid test case 31 failure with small devices
[fio.git] / oslib / asprintf.h
... / ...
CommitLineData
1#ifndef FIO_ASPRINTF_H
2#define FIO_ASPRINTF_H
3
4#include <stdarg.h>
5
6#ifndef CONFIG_HAVE_VASPRINTF
7int vasprintf(char **strp, const char *fmt, va_list ap);
8#endif
9#ifndef CONFIG_HAVE_ASPRINTF
10int asprintf(char **strp, const char *fmt, ...);
11#endif
12
13#endif /* FIO_ASPRINTF_H */