summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/zcopy.c
blob: 5e80eb49d27110bd4540c06864dc1085c05779d7 (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_zcopy (const int N, const void *X, const int incX, void *Y,
             const int incY)
{
#define BASE double
#include "source_copy_c.h"
#undef BASE
}