Added script front-end for primer-design code
[htsworkflow.git] / htswanalysis / MACS / lib / gsl / gsl-1.11 / cblas / dgbmv.c
1 #include <gsl/gsl_math.h>
2 #include <gsl/gsl_cblas.h>
3 #include "cblas.h"
4
5 void
6 cblas_dgbmv (const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA,
7              const int M, const int N, const int KL, const int KU,
8              const double alpha, const double *A, const int lda,
9              const double *X, const int incX, const double beta, double *Y,
10              const int incY)
11 {
12 #define BASE double
13 #include "source_gbmv_r.h"
14 #undef BASE
15 }