Include just the definition of BLASLONG rather than all of common.h
This commit is contained in:
parent
fa9a30b491
commit
3fd6ccdf76
|
@ -4,7 +4,15 @@
|
||||||
#else
|
#else
|
||||||
#include "config_kernel.h"
|
#include "config_kernel.h"
|
||||||
#endif
|
#endif
|
||||||
#include "common.h"
|
#if (defined(__WIN32__) || defined(__WIN64__) || defined(__CYGWIN32__) || defined(__CYGWIN64__) || defined(_WIN32) || defined(_WIN64)) && defined(__64BIT__)
|
||||||
|
typedef long long BLASLONG;
|
||||||
|
typedef unsigned long long BLASULONG;
|
||||||
|
#else
|
||||||
|
typedef long BLASLONG;
|
||||||
|
typedef unsigned long BLASULONG;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "param.h"
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue