diff options
Diffstat (limited to 'include/stdio.h')
-rw-r--r-- | include/stdio.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/stdio.h b/include/stdio.h index 56fb2d83bb287..dc534970f9d88 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -111,8 +111,9 @@ void perror(const char* s); // snprintf #if defined(_LIBCPP_MSVCRT) -extern "C++" { -#include "support/win32/support.h" +extern "C" { +int vasprintf(char **sptr, const char *__restrict fmt, va_list ap); +int asprintf(char **sptr, const char *__restrict fmt, ...); } #endif |