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