projects
/
platform
/
upstream
/
openblas.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa9a30b
)
Include just the definition of BLASLONG rather than all of common.h
author
Martin Kroeker
<martin@ruby.chemie.uni-freiburg.de>
Thu, 18 Mar 2021 06:50:19 +0000
(07:50 +0100)
committer
GitHub
<noreply@github.com>
Thu, 18 Mar 2021 06:50:19 +0000
(07:50 +0100)
getarch_2nd.c
patch
|
blob
|
history
diff --git
a/getarch_2nd.c
b/getarch_2nd.c
index
53ecccf
..
dd1f830
100644
(file)
--- a/
getarch_2nd.c
+++ b/
getarch_2nd.c
@@
-4,7
+4,15
@@
#else
#include "config_kernel.h"
#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) {