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

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