Added script front-end for primer-design code
[htsworkflow.git] / htswanalysis / MACS / lib / gsl / gsl-1.11 / cblas / saxpy.c
1 #include <gsl/gsl_math.h>
2 #include <gsl/gsl_cblas.h>
3 #include "cblas.h"
4
5 void
6 cblas_saxpy (const int N, const float alpha, const float *X, const int incX,
7              float *Y, const int incY)
8 {
9 #define BASE float
10 #include "source_axpy_r.h"
11 #undef BASE
12 }