Added MACS source
[htsworkflow.git] / htswanalysis / MACS / lib / gsl / gsl-1.11 / cblas / ztbmv.c
1 #include <gsl/gsl_math.h>
2 #include <gsl/gsl_cblas.h>
3 #include "cblas.h"
4
5 void
6 cblas_ztbmv (const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,
7              const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag,
8              const int N, const int K, const void *A, const int lda, void *X,
9              const int incX)
10 {
11 #define BASE double
12 #include "source_tbmv_c.h"
13 #undef BASE
14 }