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