summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/zdscal.c
blob: 616766462a069302ee80cd791e8bc831c6698448 (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_zdscal (const int N, const double alpha, void *X, const int incX)
{
#define BASE double
#include "source_scal_c_s.h"
#undef BASE
}