summaryrefslogtreecommitdiff
path: root/gsl-1.9/cblas/isamax.c
blob: 6e7279a377316149c0fa56b7a8266a278a8f8037 (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_isamax (const int N, const float *X, const int incX)
{
#define BASE float
#include "source_iamax_r.h"
#undef BASE
}