We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e33d33 commit 8478670Copy full SHA for 8478670
CBLAS/include/cblas.h
@@ -10,11 +10,13 @@ extern "C" { /* Assume C declarations for C++ */
10
/*
11
* Enumerated and derived types
12
*/
13
+#ifndef CBLAS_INDEX
14
#ifdef WeirdNEC
15
#define CBLAS_INDEX long
16
#else
17
#define CBLAS_INDEX int
18
#endif
19
+#endif
20
21
typedef enum {CblasRowMajor=101, CblasColMajor=102} CBLAS_LAYOUT;
22
typedef enum {CblasNoTrans=111, CblasTrans=112, CblasConjTrans=113} CBLAS_TRANSPOSE;
CBLAS/include/cblas_f77.h
@@ -17,7 +17,7 @@
#define F77_STRLEN(a) (_fcdlen)
-#ifdef WeirdNEC
+#if defined(WeirdNEC) && !defined(F77_INT)
#define F77_INT long
23
0 commit comments