xref: /petsc/include/petscblaslapack.h (revision a99434818e2a118a1cfea733a21673fae35458c0)
1 /*
2   This file dispatches between various header files for blas/lapack distributions.
3 */
4 #if !defined(_BLASLAPACK_H)
5 #define _BLASLAPACK_H
6 #include "petsc.h"
7 
8 #if defined(PETSC_HAVE_FORTRAN_STDCALL)
9 #include "petscblaslapack_stdcall.h"
10 #elif defined(PETSC_HAVE_FORTRAN_UNDERSCORE) || defined(PETSC_BLASLAPACK_UNDERSCORE)
11 #include "petscblaslapack_uscore.h"
12 #elif defined(PETSC_HAVE_FORTRAN_CAPS)
13 #include "petscblaslapack_caps.h"
14 #else
15 #include "petscblaslapack_c.h"
16 #endif
17 
18 #endif
19