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