Added MACS source
[htsworkflow.git] / htswanalysis / MACS / lib / gsl / gsl-1.11 / cblas / strmm.c
1 #include <gsl/gsl_math.h>
2 #include <gsl/gsl_cblas.h>
3 #include "cblas.h"
4
5 void
6 cblas_strmm (const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side,
7              const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE TransA,
8              const enum CBLAS_DIAG Diag, const int M, const int N,
9              const float alpha, const float *A, const int lda, float *B,
10              const int ldb)
11 {
12 #define BASE float
13 #include "source_trmm_r.h"
14 #undef BASE
15 }