configure: use proper CONFIG_ prefix for asprintf/vasprintf
[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 */