1 #include <gsl/gsl_math.h>
2 #include <gsl/gsl_cblas.h>
3 #include "cblas.h"
4 #include "error_cblas_l2.h"
5 
6 #include "hypot.c"
7 
8 void
cblas_ctbsv(const enum CBLAS_ORDER order,const enum CBLAS_UPLO Uplo,const enum CBLAS_TRANSPOSE TransA,const enum CBLAS_DIAG Diag,const int N,const int K,const void * A,const int lda,void * X,const int incX)9 cblas_ctbsv (const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,
10              const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag,
11              const int N, const int K, const void *A, const int lda, void *X,
12              const int incX)
13 {
14 #define BASE float
15 #include "source_tbsv_c.h"
16 #undef BASE
17 }
18