Skip to content

Commit 50a943d

Browse files
committed
Fixed external 64bit api CBLAS example. CBLAS_API64 needs to be defined before including cblas_64.h
1 parent 256c836 commit 50a943d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

CBLAS/examples/cblas_example2_64.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
/* cblas_example2.c */
22

3+
#define CBLAS_API64
4+
#define F77_INT int64_t
5+
36
#include <stdio.h>
47
#include <stdlib.h>
58
#include "cblas_64.h"
6-
#define CBLAS_API64
7-
#define F77_INT int64_t
89
#include "cblas_f77.h"
910

1011
#define INVALID -1

0 commit comments

Comments
 (0)