fixed issue #726 (snprintf undefined in test_arm_regression)

This commit is contained in:
mrexodia 2016-09-15 15:58:05 +02:00
parent ab75293ccf
commit b3e1f351cc

View File

@ -2,9 +2,9 @@
/* By David Hogarty, 2014 */
// the following must precede stdio (woo, thanks msft)
#ifdef _MSC_VER
//#define _CRT_SECURE_NO_WARNINGS
//#define snprintf _snprintf
#if defined(_MSC_VER) && _MSC_VER < 1900
#define _CRT_SECURE_NO_WARNINGS
#define snprintf _snprintf
#endif
#include <stdio.h>
#include <stdlib.h>