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