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