blob: a83a7952fd0c8185d95cd1c8d2b152f766855cac [file] [log] [blame]
#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
}