summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/scopy.c
blob: 423a386d20add28807f2f3f4eeae1576f66b572b (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_scopy (const int N, const float *X, const int incX, float *Y,
             const int incY)
{
#define BASE float
#include "source_copy_r.h"
#undef BASE
}