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

void
cblas_dscal (const int N, const double alpha, double *X, const int incX)
{
#define BASE double
#include "source_scal_r.h"
#undef BASE
}