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