summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/scnrm2.c
blob: 4653c13eee1f9e4dbca68a62ca3a2fed721b82a5 (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_scnrm2 (const int N, const void *X, const int incX)
{
#define BASE float
#include "source_nrm2_c.h"
#undef BASE
}