X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=oslib%2Fasprintf.h;h=7425300fdc8f6850d195963117cd95fa422245de;hb=5d665e96ca02da02210606c3eed0489f78f06310;hp=1aa076b8a2483074fd120ff25e6dd6847f4ac6af;hpb=0f0346e0c8f9141ceea8a5de8264c635ea0cae9b;p=fio.git diff --git a/oslib/asprintf.h b/oslib/asprintf.h index 1aa076b8..7425300f 100644 --- a/oslib/asprintf.h +++ b/oslib/asprintf.h @@ -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