t/jobs: use current directory for test file for t0003 and t0004
[fio.git] / oslib / asprintf.h
1 #ifndef FIO_ASPRINTF_H
2 #define FIO_ASPRINTF_H
3
4 #ifndef CONFIG_HAVE_VASPRINTF
5 int vasprintf(char **strp, const char *fmt, va_list ap);
6 #endif
7 #ifndef CONFIG_HAVE_ASPRINTF
8 int asprintf(char **strp, const char *fmt, ...);
9 #endif
10
11 #endif /* FIO_ASPRINTF_H */