Skip to content

Commit

Permalink
Include just the definition of BLASLONG rather than all of common.h
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-frbg authored Mar 18, 2021
1 parent fa9a30b commit 3fd6ccd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion getarch_2nd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {

Expand Down

0 comments on commit 3fd6ccd

Please sign in to comment.