summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/dsyr.c
blob: a83a7952fd0c8185d95cd1c8d2b152f766855cac (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_dsyr (const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo,
            const int N, const double alpha, const double *X, const int incX,
            double *A, const int lda)
{
#define BASE double
#include "source_syr.h"
#undef BASE
}