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