summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/snrm2.c
blob: 76b3d59c05254421f8e7c70308acf84d784741af (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"

float
cblas_snrm2 (const int N, const float *X, const int incX)
{
#define BASE float
#include "source_nrm2_r.h"
#undef BASE
}