Added script front-end for primer-design code
[htsworkflow.git] / htswanalysis / MACS / lib / gsl / gsl-1.11 / cblas / ctpsv.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_ctpsv (const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,
9              const enum CBLAS_TRANSPOSE TransA, const enum CBLAS_DIAG Diag,
10              const int N, const void *Ap, void *X, const int incX)
11 {
12 #define BASE float
13 #include "source_tpsv_c.h"
14 #undef BASE
15 }