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

void
cblas_saxpy (const int N, const float alpha, const float *X, const int incX,
             float *Y, const int incY)
{
#define BASE float
#include "source_axpy_r.h"
#undef BASE
}