summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/srotm.c
blob: b4707e608dc2ab27f3ec298559fa8fda5055ffbe (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_srotm (const int N, float *X, const int incX, float *Y, const int incY,
             const float *P)
{
#define BASE float
#include "source_rotm.h"
#undef BASE
}