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

void
cblas_drotg (double *a, double *b, double *c, double *s)
{
#define BASE double
#include "source_rotg.h"
#undef BASE
}