t/nvmept_trim: increase transfer size for some tests
[fio.git] / oslib / asprintf.h
CommitLineData
44e8e956
BVA
1#ifndef FIO_ASPRINTF_H
2#define FIO_ASPRINTF_H
3
34a463b2
TK
4#include <stdarg.h>
5
cb3b6806 6#ifndef CONFIG_HAVE_VASPRINTF
44e8e956
BVA
7int vasprintf(char **strp, const char *fmt, va_list ap);
8#endif
cb3b6806 9#ifndef CONFIG_HAVE_ASPRINTF
44e8e956
BVA
10int asprintf(char **strp, const char *fmt, ...);
11#endif
12
13#endif /* FIO_ASPRINTF_H */