We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88c0fdd commit fbd4c6fCopy full SHA for fbd4c6f
1 file changed
include/compat/msvc.h
@@ -31,6 +31,7 @@ extern "C" {
31
32
/* Pre-MSVC 2015 compilers don't implement snprintf in a cross-platform manner. */
33
#if _MSC_VER < 1900
34
+ #include <stdio.h>
35
#include <stdlib.h>
36
#ifndef snprintf
37
#define snprintf c99_snprintf_retro__
@@ -41,6 +42,7 @@ extern "C" {
41
42
43
/* Pre-MSVC 2008 compilers don't implement vsnprintf in a cross-platform manner? Not sure about this one. */
44
#if _MSC_VER < 1500
45
46
#include <stdarg.h>
47
48
#ifndef vsnprintf
0 commit comments