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

CBLAS_INDEX
cblas_izamax (const int N, const void *X, const int incX)
{
#define BASE double
#include "source_iamax_c.h"
#undef BASE
}