snprintf define consolidated to common.h
This commit is contained in:
parent
744779d335
commit
40e53e52d6
2
common.h
2
common.h
|
@ -85,6 +85,8 @@ extern "C" {
|
||||||
|
|
||||||
#if !defined(_MSC_VER)
|
#if !defined(_MSC_VER)
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#elif _MSC_VER < 1900
|
||||||
|
#define snprintf _snprintf
|
||||||
#endif
|
#endif
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
|
|
|
@ -35,12 +35,6 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#if defined(_WIN32) && defined(_MSC_VER)
|
|
||||||
#if _MSC_VER < 1900
|
|
||||||
#define snprintf _snprintf
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static char* openblas_config_str=""
|
static char* openblas_config_str=""
|
||||||
"OpenBLAS "
|
"OpenBLAS "
|
||||||
VERSION
|
VERSION
|
||||||
|
|
|
@ -83,10 +83,6 @@ struct ctest {
|
||||||
#undef CTEST_SEGFAULT
|
#undef CTEST_SEGFAULT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if _MSC_VER < 1900
|
|
||||||
#define snprintf _snprintf
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef __cplusplus
|
#ifndef __cplusplus
|
||||||
#define inline __inline
|
#define inline __inline
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue