Restore type checking in calc_thread_status()
[fio.git] / oslib / asprintf.h
CommitLineData
44e8e956
BVA
1#ifndef FIO_ASPRINTF_H
2#define FIO_ASPRINTF_H
3
cb3b6806 4#ifndef CONFIG_HAVE_VASPRINTF
44e8e956
BVA
5int vasprintf(char **strp, const char *fmt, va_list ap);
6#endif
cb3b6806 7#ifndef CONFIG_HAVE_ASPRINTF
44e8e956
BVA
8int asprintf(char **strp, const char *fmt, ...);
9#endif
10
11#endif /* FIO_ASPRINTF_H */