summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/srot.c
blob: ee602d0f64c9b582c0bf482ef3cd7e8a01101c8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <gsl/gsl_math.h>
#include <gsl/gsl_cblas.h>
#include "cblas.h"

void
cblas_srot (const int N, float *X, const int incX, float *Y, const int incY,
            const float c, const float s)
{
#define BASE float
#include "source_rot.h"
#undef BASE
}