configure: use proper CONFIG_ prefix for asprintf/vasprintf
[fio.git] / oslib / asprintf.h
index 1aa076b8a2483074fd120ff25e6dd6847f4ac6af..7425300fdc8f6850d195963117cd95fa422245de 100644 (file)
@@ -1,10 +1,10 @@
 #ifndef FIO_ASPRINTF_H
 #define FIO_ASPRINTF_H
 
-#ifndef HAVE_VASPRINTF
+#ifndef CONFIG_HAVE_VASPRINTF
 int vasprintf(char **strp, const char *fmt, va_list ap);
 #endif
-#ifndef HAVE_ASPRINTF
+#ifndef CONFIG_HAVE_ASPRINTF
 int asprintf(char **strp, const char *fmt, ...);
 #endif