Browse Source
Merge pull request #2092 from jeffbaylor/snprintf_with_MSC_VER
snprintf define consolidated to common.h
tags/v0.3.6^2
Martin Kroeker
GitHub
7 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
2 additions and
10 deletions
-
common.h
-
driver/others/openblas_get_config.c
-
utest/ctest.h
|
|
|
@@ -85,6 +85,8 @@ extern "C" { |
|
|
|
|
|
|
|
#if !defined(_MSC_VER) |
|
|
|
#include <unistd.h> |
|
|
|
#elif _MSC_VER < 1900 |
|
|
|
#define snprintf _snprintf |
|
|
|
#endif |
|
|
|
#include <time.h> |
|
|
|
|
|
|
|
|
|
|
|
@@ -35,12 +35,6 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
|
|
|
|
|
|
#include <string.h> |
|
|
|
|
|
|
|
#if defined(_WIN32) && defined(_MSC_VER) |
|
|
|
#if _MSC_VER < 1900 |
|
|
|
#define snprintf _snprintf |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
|
|
|
|
static char* openblas_config_str="" |
|
|
|
"OpenBLAS " |
|
|
|
VERSION |
|
|
|
|
|
|
|
@@ -83,10 +83,6 @@ struct ctest { |
|
|
|
#undef CTEST_SEGFAULT |
|
|
|
#endif |
|
|
|
|
|
|
|
#if _MSC_VER < 1900 |
|
|
|
#define snprintf _snprintf |
|
|
|
#endif |
|
|
|
|
|
|
|
#ifndef __cplusplus |
|
|
|
#define inline __inline |
|
|
|
#endif |
|
|
|
|