summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/zaxpy.c
blob: d6484014f0b6cedc851aeca71e4b3158456d65ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <gsl/gsl_math.h>
#include <gsl/gsl_cblas.h>
#include "cblas.h"

void
cblas_zaxpy (const int N, const void *alpha, const void *X, const int incX,
             void *Y, const int incY)
{
#define BASE double
#include "source_axpy_c.h"
#undef BASE
}