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

void
cblas_dspr (const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,
            const int N, const double alpha, const double *X, const int incX,
            double *Ap)
{
#define BASE double
#include "source_spr.h"
#undef BASE
}