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