Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git] / ground / gcs / src / libs / eigen / blas / xerbla.cpp
blobc373e86996d5e16fe81e3d6f3f5c202e85cf1f39
2 #include <stdio.h>
4 #if (defined __GNUC__) && (!defined __MINGW32__) && (!defined __CYGWIN__)
5 #define EIGEN_WEAK_LINKING __attribute__ ((weak))
6 #else
7 #define EIGEN_WEAK_LINKING
8 #endif
10 #ifdef __cplusplus
11 extern "C"
13 #endif
15 EIGEN_WEAK_LINKING int xerbla_(const char * msg, int *info, int)
17 printf("Eigen BLAS ERROR #%i: %s\n", *info, msg );
18 return 0;
21 #ifdef __cplusplus
23 #endif