We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d90ca75 + 3fd6ccd commit 1e4b2e9Copy full SHA for 1e4b2e9
1 file changed
getarch_2nd.c
@@ -4,7 +4,15 @@
4
#else
5
#include "config_kernel.h"
6
#endif
7
-#include "common.h"
+#if (defined(__WIN32__) || defined(__WIN64__) || defined(__CYGWIN32__) || defined(__CYGWIN64__) || defined(_WIN32) || defined(_WIN64)) && defined(__64BIT__)
8
+typedef long long BLASLONG;
9
+typedef unsigned long long BLASULONG;
10
+#else
11
+typedef long BLASLONG;
12
+typedef unsigned long BLASULONG;
13
+#endif
14
+
15
+#include "param.h"
16
17
int main(int argc, char **argv) {
18
0 commit comments