Skip to content

Commit 3fd6ccd

Browse files
authored
Include just the definition of BLASLONG rather than all of common.h
1 parent fa9a30b commit 3fd6ccd

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Diff for: getarch_2nd.c

+9-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@
44
#else
55
#include "config_kernel.h"
66
#endif
7-
#include "common.h"
7+
#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"
816

917
int main(int argc, char **argv) {
1018

0 commit comments

Comments
 (0)