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