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