Propagate change from NuLib2 (snprintf in VS2015)

This commit is contained in:
Andy McFadden 2015-11-15 15:38:21 -08:00
parent 8bbe730184
commit 7596c950fa
1 changed files with 4 additions and 2 deletions

View File

@ -67,8 +67,10 @@
# include <direct.h>
# define FOPEN_WANTS_B
# define HAVE_CHSIZE
# define snprintf _snprintf
# define vsnprintf _vsnprintf
# if _MSC_VER < 1900 /* no snprintf until Visual Studio 2015 */
# define snprintf _snprintf
# define vsnprintf _vsnprintf
# endif
#endif