Include headers from cblas.h to pull in f77_int.

Details:
- Added #include statements for certain key BLIS headers so that the
  definition of f77_int is pulled in when a user compiles application
  code with only #include "cblas.h" (and no other BLIS header). This
  is necessary since f77_int is now used within the cblas API.
This commit is contained in:
Field G. Van Zee
2016-05-06 10:24:30 -05:00
parent c3a4d39d03
commit 97b512ef62

View File

@@ -2,6 +2,14 @@
#define CBLAS_H
#include <stddef.h>
// We need to #include "bli_type_defs.h" in order to pull in the
// definition of f77_int. But in order to #include that header, we
// also need to pull in the headers that precede it in blis.h.
#include "bli_system.h"
#include "bli_config.h"
#include "bli_config_macro_defs.h"
#include "bli_type_defs.h"
/*
* Enumerated and derived types
*/