fixed issue #726 (snprintf undefined in test_arm_regression)

This commit is contained in:
mrexodia 2016-09-15 15:58:05 +02:00
parent b4bc33dba5
commit 1e9efd8581
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8

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>