mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-11-27 06:30:28 +08:00
18 lines
222 B
C++
18 lines
222 B
C++
|
|
#include <iostream>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
int xerbla_(const char * msg, int *info, int)
|
|
{
|
|
std::cerr << "Eigen BLAS ERROR #" << *info << ": " << msg << "\n";
|
|
return 0;
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|