Merge pull request #774 from mrexodia/issue726_snprintf

fixed issue #726 (snprintf undefined in test_arm_regression)
This commit is contained in:
Nguyen Anh Quynh 2016-09-15 23:21:52 +07:00 committed by GitHub
commit 739186d8e9
1 changed files with 3 additions and 3 deletions

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>